-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.36 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
{
"name": "d3-compose",
"version": "1.0.0",
"description": "Utility function that supports composition for `d3.call`s.",
"main": "build/d3-compose.js",
"module": "index",
"jsnext:main": "index",
"repository": {
"type": "git",
"url": "git+https://github.com/au-phiware/d3-compose.git"
},
"keywords": [
"d3",
"d3-module",
"selection",
"data-join"
],
"author": "Corin Lawson",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/au-phiware/d3-compose/issues"
},
"homepage": "https://au-phiware.github.io/d3-compose/",
"scripts": {
"docco": "docco --output . src/*.js",
"clean": "rm -rf build && mkdir build",
"pretest": "npm run clean && rollup -c",
"test": "tape 'test/**/*-test.js'",
"preversion": "npm test",
"postversion": "npm publish",
"prepublish": "npm test && uglifyjs build/d3-compose.js -c -m -o build/d3-compose.min.js",
"postpublish": "git push && git push --tags && npm run ghpages",
"preghpages": "npm run docco",
"ghpages": "git add -f build src public docco.css && git checkout -m gh-pages && git checkout --theirs . && git add build src public docco.css && git commit -m \"v$npm_package_version\""
},
"devDependencies": {
"docco": "^0.8.0",
"rollup": "^0.66.2",
"rollup-plugin-buble": "^0.19.2",
"tape": "^4.9.1",
"uglify-js": "^3.4.4"
}
}