-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.96 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.96 KB
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
{
"name": "react-d3-charts",
"version": "1.0.47",
"description": "A D3 charting library for React",
"main": "index.js",
"scripts": {
"clean": "rm -rf ./lib/*",
"build": "npm run clean && ./node_modules/.bin/babel src --out-dir lib/",
"demo": "webpack-dev-server --content-base demo --hot --progress --colors --port 3000",
"prepublish": "npm run build",
"start": "npm run demo",
"test": "babel-node ./node_modules/.bin/babel-istanbul test _mocha -- --recursive 'test/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jivesoftware/react-d3-charts.git"
},
"publishConfig": {
"registry": "http://nexus-int.eng.jiveland.com/content/repositories/npm-internal"
},
"keywords": [
"react",
"d3",
"charts"
],
"author": "Matthew Page",
"license": "MIT",
"bugs": {
"url": "https://github.com/jivesoftware/react-d3-charts/issues"
},
"homepage": "https://github.com/jivesoftware/react-d3-charts#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^4.1.6",
"babel-istanbul": "^0.12.2",
"babel-loader": "^6.2.1",
"babel-plugin-syntax-class-properties": "^6.3.13",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.3.13",
"chai": "^3.4.1",
"css-loader": "^0.23.1",
"enzyme": "^2.4.1",
"eslint-plugin-react": "^3.15.0",
"jsdom": "^7.2.2",
"mocha": "^2.3.4",
"node-sass": "^4.9.3",
"react-addons-test-utils": "^15.4.1",
"react-hot-loader": "^1.3.0",
"react-simpletabs": "^0.7.0",
"sass-loader": "^7.0.3",
"sinon": "^1.17.2",
"style-loader": "^0.13.0",
"susy": "^2.2.12",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.11.0"
},
"dependencies": {
"d3": "^3.5.16",
"lodash": "^4.17.10",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"sc-color": "^0.4.0",
"shortid": "^2.2.6"
}
}