{
  "name": "react-horizontal-timeline",
  "version": "1.5.3",
  "description": "A horizontal timeline component made using react",
  "main": "./dist/react-horizontal-timeline.js",
  "scripts": {
    "start": "node tools/server.js",
    "build": "cross-env NODE_ENV=production webpack --config tools/webpack.config.prod.js",
    "build:demos": "cross-env NODE_ENV=production webpack --config tools/webpack.config.demos.js",
    "prepublish": "npm run build",
    "lint": "./node_modules/.bin/eslint --config tools/lint-config.js src/ demos/demo-swipeable-views/HorizontalTimelineConfigurator.jsx",
    "test": "ava",
    "test:cover": "nyc ava",
    "test:watch": "npm run test -- --watch"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/jckdrpr/react-horizontal-timeline"
  },
  "keywords": [
    "react",
    "timeline",
    "horizontal",
    "react-motion",
    "react-component"
  ],
  "author": "Sherub Thakur",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/jckdrpr/react-horizontal-timeline/issues"
  },
  "homepage": "https://github.com/jckdrpr/react-horizontal-timeline",
  "babel": {
    "presets": [
      [
        "es2015",
        {
          "modules": false
        }
      ],
      "react",
      "stage-0"
    ],
    "plugins": [
      "transform-runtime"
    ],
    "env": {
      "development": {
        "sourceMaps": "inline"
      },
      "production": {
        "plugins": [
          "transform-react-constant-elements",
          "transform-react-remove-prop-types"
        ]
      }
    }
  },
  "ava": {
    "verbose": true,
    "files": [
      "src/**/*.test.js",
      "src/*.test.js"
    ],
    "source": [
      "src/**/*.jsx",
      "src/**/*.js",
      "!dist/**/*",
      "!coverage/**/*",
      "!src/**/*.test.js"
    ],
    "match": [],
    "concurrency": 5,
    "failFast": true,
    "tap": true,
    "require": [
      "./tools/test-helpers.js"
    ],
    "babel": {
      "presets": [
        "es2015",
        "react",
        "stage-0"
      ],
      "plugins": [
        "transform-runtime"
      ]
    }
  },
  "nyc": {
    "exclude": [
      "src/**/*.test.js"
    ],
    "extension": [
      ".jsx",
      ".js"
    ],
    "reporter": [
      "lcov",
      "text",
      "html"
    ]
  },
  "dependencies": {
    "babel-plugin-transform-runtime": "^6.23.0",
    "color": "^3.0.0",
    "prop-types": "^15.6.0",
    "radium": "^0.24.0",
    "react-dimensions": "2.0.0-alpha2",
    "react-icons": "^2.0.1",
    "react-motion": "^0.5.0",
    "uglifyjs-webpack-plugin": "^1.2.4"
  },
  "devDependencies": {
    "ava": "^0.25.0",
    "babel-core": "^6.3.21",
    "babel-eslint": "^8.0.3",
    "babel-loader": "^7.1.1",
    "babel-plugin-transform-react-constant-elements": "^6.9.1",
    "babel-plugin-transform-react-inline-elements": "^6.8.0",
    "babel-plugin-transform-react-remove-prop-types": "^0.4.6",
    "babel-polyfill": "^6.9.1",
    "babel-preset-es2015": "^6.3.13",
    "babel-preset-react": "^6.3.13",
    "babel-preset-stage-0": "^6.3.13",
    "babel-register": "^6.9.0",
    "babel-runtime": "^6.9.2",
    "bootstrap": "^4.1.0",
    "cross-env": "^5.0.1",
    "css-loader": "^0.28.4",
    "enzyme": "^3.2.0",
    "eslint": "^4.1.1",
    "eslint-plugin-react": "^7.1.0",
    "extract-text-webpack-plugin": "^3.0.2",
    "file-loader": "^1.1.6",
    "html-loader": "^0.5.1",
    "jsdom": "^11.0.0",
    "nyc": "^11.6.0",
    "react-addons-test-utils": "^15.0.2",
    "react-swipeable-views": "^0.12.3",
    "react-transform-hmr": "^1.0.1",
    "style-loader": "^0.20.3",
    "url-loader": "^1.0.1",
    "webpack": "^4.5.0",
    "webpack-cli": "^2.0.14",
    "webpack-dev-server": "^3.1.3"
  },
  "peerDependencies": {
    "react": "^16.2.0",
    "react-dom": "^16.2.0"
  }
}
