-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.56 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
{
"name": "sequence-explorer",
"version": "1.2.0",
"description": "Wrapper on top of and bundled with sankeyseq which is a Sankey plugin for sequential data",
"keywords": [
"d3",
"sequential",
"sankey"
],
"license": "BSD-3-Clause",
"main": "build/sequence-explorer.js",
"jsnext:main": "index",
"homepage": "https://github.com/ee2dev/sequence-explorer",
"repository": {
"type": "git",
"url": "https://github.com/ee2dev/sequence-explorer.git"
},
"scripts": {
"old_pretest": "rm -rf build && mkdir build && rollup -f umd -n d3 -o build/sequence-explorer.v20.js -- index.js",
"old_test": "tape 'test/**/*-test.js'",
"old_postpublish": "zip -j build/sequence-explorer.zip -- LICENSE README.md build/sequence-explorer.v20.js build/sequence-explorer.v20.min.js",
"pretest": "rm -rf build && mkdir build && rollup -c",
"test": "node test/sankeySeqExplorer-test.js | tap-spec && eslint index.js src",
"prepare": "npm run test && uglifyjs build/sequence-explorer.js -c -m -o build/sequence-explorer.min.js"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"d3-array": "^1.2.1",
"d3-collection": "^1.0.4",
"d3-interpolate": "^1.1.6",
"d3-scale": "^1.0.7",
"eslint": "^3.19.0",
"rollup": "0.27",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "4",
"uglify-js": "^2.7.0"
},
"dependencies": {
"d3": "^4.9.1",
"npm": "^5.6.0"
}
}