-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
100 lines (100 loc) · 3.63 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "react-easy-chart",
"version": "1.0.0",
"description": "React component implementations of Mike Bostok's D3 visualisation library.",
"main": "lib/index.js",
"scripts": {
"test": "NODE_ENV='test' karma start",
"dev-test": "karma start --no-single-run --auto-watch",
"eslint": "eslint ./modules/ ./examples/",
"start": "npm run eslint && node examples/server.js",
"docbuild": "mkdir -p docs && rm -rf docs/* && cp -rf examples/ docs/temp/ && cd docs && NODE_ENV=production webpack -p --config temp/webpack.config.docs.js && rm -r temp",
"publish-patch": "npm version patch && npm run babel && npm publish",
"publish-minor": "npm version minor && npm run babel && npm publish",
"publish-major": "npm version major && npm run babel && npm publish",
"babel": "npx babel ./modules --out-dir ./lib --source-maps --presets env,react,stage-0,stage-1 --plugins babel-plugin-add-module-exports,babel-plugin-transform-class-properties,babel-plugin-transform-object-rest-spread,babel-plugin-transform-react-jsx,babel-plugin-transform-runtime"
},
"repository": {
"type": "git",
"url": "git+https://github.com/experience-experiments/react-easy-chart.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/experience-experiments/react-easy-chart/issues"
},
"homepage": "https://github.com/experience-experiments/react-easy-chart#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.9.0",
"babel-runtime": "^6.9.2",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"copy-webpack-plugin": "^3.0.1",
"es5-shim": "^4.5.9",
"es6-shim": "^0.35.1",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-loader": "^1.4.1",
"eslint-plugin-import": "^1.11.1",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^5.2.2",
"html-webpack-plugin": "^2.22.0",
"isparta": "^4.0.0",
"isparta-loader": "^2.0.0",
"istanbul": "^0.4.4",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.1.0",
"karma-es6-shim": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.1",
"karma-phantomjs-shim": "^1.4.0",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"mocha": "^3.2.0",
"moment": "^2.11.1",
"open": "0.0.5",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "2.1.14",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-scrollspy": "^3.0.2",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.4.4",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"d3": "^4.12.0",
"d3-array": "^1.2.1",
"d3-scale": "^1.0.7",
"d3-shape": "^1.2.0",
"d3-time-format": "^2.1.1",
"lodash.merge": "^4.0.1",
"object-hash": "^1.1.4",
"radium": "^0.19.1",
"react-faux-dom": "^4.1.0"
},
"peerDependencies": {
"react": "^15.5.0 || ^16.0.0",
"react-dom": "^15.5.0 || ^16.0.0"
}
}