-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "d3act",
"version": "3.1.0",
"description": "Visualising data using d3 with React.js",
"main": "./lib/components/Chart.js",
"scripts": {
"build": "babel src --out-dir lib",
"prepublish": "npm run build",
"examples": "npm run build && webpack-dev-server --config examples/webpack.config.js --no-info --content-base examples/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnSavvides/d3act.git"
},
"keywords": [
"d3",
"React",
"visualisations",
"data",
"svg"
],
"author": "Andreas Savvides",
"license": "MIT",
"bugs": {
"url": "https://github.com/AnSavvides/d3act/issues"
},
"homepage": "https://github.com/AnSavvides/d3act#readme",
"dependencies": {
"d3": "^4.2.2",
"react": "^15.3.1",
"react-dom": "^15.3.1"
},
"devDependencies": {
"babel": "^5.6.23",
"babel-core": "^5.6.15",
"babel-loader": "^5.2.2",
"babel-eslint": "^3.1.23",
"eslint": "^0.24.0",
"eslint-plugin-react": "^3.2.3",
"grunt-eslint": "^16.0.0",
"grunt": "^0.4.5",
"grunt-contrib-watch": "^0.6.1",
"grunt-webpack": "^1.0.10",
"load-grunt-tasks": "^3.2.0",
"node-libs-browser": "^0.5.2",
"webpack": "^1.10.0",
"webpack-dev-server": "^1.10.1"
}
}