-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"name": "storycurve",
"version": "1.0.1",
"description": "Visualization method for comparing two temporal orders with additional metadata",
"keywords": [
"visualization",
"story",
"nonlinear",
"narrative"
],
"homepage": "https://namwkim.github.com/storycurve",
"author": {
"name": "Nam Wook Kim",
"url": "www.namwkim.org"
},
"main": "./src/storycurve.js",
"repository": {
"type": "git",
"url": "https://github.com/namwkim/storycurve.git"
},
"license": "MIT",
"scripts": {
"start": "npm run server & npm run watch",
"server": "http-server -p 9000",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"watch": "rollup -c -w"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.2.0",
"http-server": "^0.10.0",
"rollup": "^0.49.2",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-css-only": "^0.2.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-watch": "^4.0.0"
},
"dependencies": {
"d3-array": "^1.2.0",
"d3-axis": "^1.0.8",
"d3-scale": "^1.0.6",
"d3-selection": "^1.1.0",
"d3-shape": "^1.2.0",
"d3-tip": "^0.7.1",
"d3-zoom": "^1.3.0"
}
}