forked from spotify/reactochart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.51 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
{
"name": "reactochart",
"description": "Reactochart - React Charts, graphs and data visualization (UNSTABLE)",
"author": "Dan Delany <[email protected]>",
"version": "0.3.1",
"main": "lib/index.js",
"files": [
"lib/",
"src/"
],
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"dev": "webpack-dev-server --config webpack.config.base.js",
"build-lib": "rm -rf lib/ && babel src --out-dir lib --source-maps",
"build-docs": "BABEL_ENV=production webpack --config webpack.config.build.js",
"build": "npm run build-lib && npm run make-docs && npm run build-docs",
"make-docs": "node scripts/makeDocs.js",
"serve": "python -m SimpleHTTPServer",
"test": "npm run test-jsdom",
"test-browser": "webpack-dev-server --config tests/browser/webpack.config.test.js",
"test-jsdom": "env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --compilers js:babel-register --require tests/jsdom/setup.js --recursive tests/jsdom/spec"
},
"dependencies": {
"d3": "^4.4.0",
"invariant": "^2.2.0",
"lodash": "^4.5.1",
"measure-text": "0.0.4",
"moment": "^2.10.6",
"numeral": "^2.0.6",
"prop-types": "^15.5.10",
"react-addons-shallow-compare": "^15.6.0"
},
"peerDependencies": {
"react": ">=0.14.0, <16.0.0",
"react-dom": ">=0.14.0, <16.0.0"
},
"devDependencies": {
"babel-cli": "^6.6.0",
"babel-core": "^6.6.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^4.1.1",
"chai-enzyme": "^0.8.0",
"clean-webpack-plugin": "^0.1.16",
"component-playground": "^1.3.2",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"enzyme": "^2.9.1",
"html-webpack-plugin": "^2.30.1",
"jsdom": "^9.12.0",
"json-loader": "^0.5.2",
"less": "^2.5.1",
"less-loader": "^4.0.5",
"mocha": "^3.5.0",
"raw-loader": "^0.5.1",
"react": "^15.6.1",
"react-addons-update": "^15.6.0",
"react-dom": "^15.6.1",
"react-pure-render-debug": "^1.1.1",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"shelljs": "^0.7.8",
"sinon": "^4.1.2",
"sinon-chai": "^2.14.0",
"style-loader": "^0.18.2",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.7.1"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/spotify/reactochart"
}
}