-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.44 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-force-attract",
"version": "0.1.1",
"description": "Attraction force for d3.forceSimulation.",
"keywords": [
"d3",
"d3-module",
"d3-force",
"layout",
"graph",
"attract",
"infovis",
"dataviz"
],
"homepage": "http://ericsoco.github.io/d3-force-attract/",
"license": "BSD-3-Clause",
"author": {
"name": "Eric Socolofsky",
"url": "http://transmote.com/"
},
"main": "dist/d3-force-attract.js",
"module": "dist/d3-force-attract.mjs",
"jsnext:main": "dist/d3-force-attract.mjs",
"repository": {
"type": "git",
"url": "https://github.com/ericsoco/d3-force-attract.git"
},
"scripts": {
"lint": "eslint lib",
"test": "tape 'test/**/*-test.js' | tap-min",
"predist": "npm run lint",
"dist": "rollup -c",
"postdist": "npm run test",
"watch": "rollup -c -w",
"prepublish": "npm run dist && uglifyjs dist/d3-force-attract.js -c -m -o dist/d3-force-attract.min.js",
"publish-patch": "npm version patch && npm publish"
},
"pre-push": [
"dist"
],
"dependencies": {},
"devDependencies": {
"babel-eslint": "^7.0.0",
"babel-plugin-external-helpers": "^6.8.0",
"babel-preset-es2015": "^6.16.0",
"babelrc-rollup": "^3.0.0",
"eslint": "^3.8.1",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"rollup-watch": "^2.5.0",
"sinon": "^1.17.6",
"tap-min": "^1.1.0",
"tape": "^4.6.2",
"uglify-js": "^2.7.3"
}
}