react-activity-graph
Version:
- `npm start` - runs `webpack-dev-server` from the `examples` dir, which imports the module from `src` into an example react app - `npm test` - runs tests w/ jest - `npm run test:watch` - runs tests in watch mode - `npm run build` - bundles a build usi
71 lines (70 loc) • 1.89 kB
JSON
{
"name": "react-activity-graph",
"version": "0.8.4",
"description": "",
"keywords": [
"react",
"react-component",
"activity",
"graph",
"activity-graph"
],
"tags": [],
"main": "./lib/index.js",
"files": [
"lib/index.js"
],
"author": {
"name": "Thom Allen",
"url": "https://github.com/tjallen"
},
"license": "MIT",
"homepage": "https://github.com/tjallen/react-activity-graph",
"repository": {
"type": "git",
"url": "https://github.com/tjallen/react-activity-graph.git"
},
"dependencies": {},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.26.0",
"date-fns": "^1.28.5",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"hex-to-rgba": "^0.2.0",
"html-webpack-plugin": "^2.30.1",
"jest": "^21.2.0",
"lodash.isequal": "^4.5.0",
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^1.3.1",
"react-test-renderer": "^16.0.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.0"
},
"peerDependencies": {
"date-fns": "^1.28.5",
"react": "^16.0.0"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"start": "webpack-dev-server --open --hot --config webpack.dev.babel.js",
"build": "webpack --config webpack.pub.babel.js",
"pub": "npm run test && npm run build && npm publish",
"pub:notest": "npm run build && npm publish"
}
}