forked from spotify/reactochart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.54 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
{
"name": "reactochart",
"description": "Reactochart - React Charts, graphs and data visualization (UNSTABLE)",
"author": "Dan Delany <[email protected]>",
"version": "0.3.0",
"main": "lib/index.js",
"files": [
"lib/",
"src/"
],
"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",
"jquery": "^2.1.4",
"lodash": "^4.5.1",
"measure-text": "0.0.4",
"moment": "^2.10.6",
"numeral": "^1.5.3",
"prop-types": "^15.5.10",
"react-addons-shallow-compare": "^15.6.0",
"recompose": "^0.15.1"
},
"peerDependencies": {
"react": ">=0.14.0, <0.16.0",
"react-dom": ">=0.14.0, <0.16.0"
},
"devDependencies": {
"babel-cli": "^6.6.0",
"babel-core": "^6.6.0",
"babel-loader": "^6.2.4",
"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": "^3.4.0",
"chai-enzyme": "^0.4.1",
"clean-webpack-plugin": "^0.1.16",
"component-playground": "^1.3.2",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.15.6",
"enzyme": "^2.9.1",
"html-webpack-plugin": "^2.30.1",
"jsdom": "^9.8.0",
"json-loader": "^0.5.2",
"less": "^2.5.1",
"less-loader": "^2.2.0",
"mocha": "^2.3.3",
"mocha-phantomjs": "^4.0.1",
"raw-loader": "^0.5.1",
"react": "^15.6.1",
"react-addons-test-utils": "^15.6.0",
"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",
"style-loader": "^0.12.3",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1"
},
"license": "Apache 2.0",
"repository": {
"type": "git",
"url": "https://github.com/spotify/reactochart"
}
}