-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "d3-force-sampled",
"version": "1.0.1",
"description": "Fast force-directed graph layout using random sampling.",
"keywords": [
"d3",
"d3-module",
"layout",
"network",
"graph",
"force",
"sampled",
"verlet",
"infovis"
],
"homepage": "https://github.com/twosixlabs/d3-force-sampled/",
"license": "BSD-3-Clause",
"author": {
"name": "Robert Gove",
"url": "http://rpgove.com"
},
"main": "build/d3-force-sampled.js",
"module": "index",
"jsnext:main": "index",
"repository": {
"type": "git",
"url": "https://github.com/twosixlabs/d3-force-sampled.git"
},
"scripts": {
"pretest": "rm -rf build && mkdir build && rollup -c",
"test": "tape 'test/**/*-test.js' && eslint index.js src",
"prepare": "npm run test && uglifyjs build/d3-force-sampled.js -c -m --comments '/Copyright/' -o build/d3-force-sampled.min.js",
"postpublish": "git push && git push --tags && zip -j build/d3-force-sampled.zip -- LICENSE README.md build/d3-force-sampled.js build/d3-force-sampled.min.js"
},
"devDependencies": {
"eslint": ">=4.18.2",
"rollup": "0.64",
"seedrandom": "2",
"tape": "4",
"uglify-js": "3"
},
"dependencies": {
"npm": "^6.9.0"
}
}