-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "d3-wrap",
"version": "0.4.1",
"description": "A small utility function that supports wrapping a function to d3.call.",
"main": "build/d3-wrap.js",
"module": "index",
"jsnext:main": "index",
"repository": {
"type": "git",
"url": "git+https://github.com/au-phiware/d3-wrap.git"
},
"keywords": [
"d3",
"d3-module",
"selection",
"data-join",
"wrapper"
],
"author": "Corin Lawson",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/au-phiware/d3-wrap/issues"
},
"homepage": "https://github.com/au-phiware/d3-wrap#readme",
"scripts": {
"clean": "rm -rf build && mkdir build",
"pretest": "npm run clean && rollup -f umd -n d3 -o build/d3-wrap.js -- index.js",
"test": "tape 'test/**/*-test.js'",
"prepublish": "npm test && uglifyjs build/d3-wrap.js -c -m -o build/d3-wrap.min.js",
"postpublish": "git push && git push --tags"
},
"devDependencies": {
"rollup": "^0.36.1",
"tape": "^4.6.0",
"uglify-js": "^2.7.3"
}
}