-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
34 lines (34 loc) · 1.12 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
{
"name": "d3-ellipse-force",
"version": "0.1.1",
"description": "Force-directed graph where nodes are calculated as ellipses. Offers better layout than circular nodes when nodes are wide or tall, or vary, e.g. with text labels.",
"author": "Jukka Purma",
"keywords": [
"d3",
"d3-module",
"d3-force",
"ellipse",
"rectangle",
"layout",
"network"
],
"license": "BSD-3-Clause",
"main": "build/d3-ellipse-force.js",
"jsnext:main": "index",
"homepage": "https://github.com/jpurma/d3-ellipse-force",
"repository": {
"type": "git",
"url": "https://github.com/jpurma/d3-ellipse-force.git"
},
"scripts": {
"pretest": "rm -rf build && mkdir build && rollup -f umd -n d3 -o build/d3-ellipse-force.js -- index.js",
"test": "tape 'test/**/*-test.js'",
"prepublish": "npm run test && uglifyjs build/d3-ellipse-force.js -c -m -o build/d3-ellipse-force.min.js",
"postpublish": "zip -j build/d3-ellipse-force.zip -- LICENSE README.md build/d3-ellipse-force.js build/d3-ellipse-force.min.js"
},
"devDependencies": {
"rollup": "0.42",
"tape": "~4.7.0",
"uglify-js": "2"
}
}