forked from nonlocalize/explore-data-visualization-with-D3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.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
{
"name": "explore-data-visualization-with-d3",
"version": "0.0.0",
"description": "Explore data visualization using D3",
"engines": {
"node": ">=10.3.0",
"npm": ">=6.4.1"
},
"scripts": {
"build": "npm run start:clean",
"start": "npm run start:example:16",
"start:clean": "npm run start:example:16:clean",
"stop": "npm run stop:example:16",
"start:example:14": "cd examples/14-using-d3-with-angular && npm start",
"start:example:14:clean": "cd examples/14-using-d3-with-angular && npm run build",
"stop:example:14": "cd examples/14-using-d3-with-angular && npm run stop",
"start:example:15": "cd examples/15-angular-d3-responsive-graph && npm start",
"start:example:15:clean": "cd examples/15-angular-d3-responsive-graph && npm run build",
"stop:example:15": "cd examples/15-angular-d3-responsive-graph && npm run stop",
"start:example:16": "cd examples/16-angular-d3-real-time-socket-io && npm start",
"start:example:16:clean": "cd examples/16-angular-d3-real-time-socket-io && npm run build",
"stop:example:16": "cd examples/16-angular-d3-real-time-socket-io && npm run stop",
"docker:nuke": "docker system prune -a && docker volume prune"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheRobBrennan/explore-data-visualization-with-D3.git"
},
"author": "Rob Brennan <rob@therobbrennan.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheRobBrennan/explore-data-visualization-with-D3/issues"
},
"homepage": "https://github.com/TheRobBrennan/explore-data-visualization-with-D3#readme",
"devDependencies": {
"tar": "^4.4.8"
}
}