-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.71 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
52
53
54
55
56
{
"name": "d3-network-time",
"version": "0.2.1",
"description": "a d3 plugin to create a temporal network",
"keywords": [
"d3",
"d3-module",
"network",
"timeline"
],
"license": "BSD-3-Clause",
"main": "build/d3-network-time.js",
"jsnext:main": "index",
"homepage": "https://github.com/dianaow/d3-network-time",
"repository": {
"type": "git",
"url": "https://github.com/dianaow/d3-network-time.git"
},
"dependencies": {
"d3-array": "^2.4.0",
"d3-axis": "^1.0.12",
"d3-collection": "^1.0.7",
"d3-force": "^2.0.1",
"d3-format": "^1.4.4",
"d3-hierarchy": "^1.1.9",
"d3-scale": "^3.2.1",
"d3-selection": "^1.4.1",
"d3-shape": "^1.3.7",
"d3-time-format": "^2.2.3",
"d3-transition": "^1.3.2",
"d3-zoom": "^1.8.3"
},
"scripts": {
"pretest": "rm -rf build && mkdir build && rollup -c ./rollup.config.js",
"build": "npm run pretest",
"lint": "eslint --ext .js src --fix",
"format": "prettier --write \"**/*.+(js|jsx|css|md)\"",
"test": "tape 'test/**/*-test.js'",
"prepublish": "npm run format && npm run lint && npm run test && uglifyjs build/d3-network-time.js -c -m -o build/d3-network-time.min.js",
"postpublish": "zip -j build/d3-network-time.zip -- LICENSE README.md build/d3-network-time.js build/d3-network-time.min.js"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-runtime": "^6.26.0",
"eslint": "^6.8.0",
"prettier": "^2.0.5",
"rollup": "2.0.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-watch": "^4.3.1",
"tape": "4",
"uglify-js": "2"
}
}