-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.19 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.19 KB
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-gup",
"version": "1.0.1",
"description": "A small utility function that encapsulates the D3 General Update Pattern.",
"main": "build/d3-gup.js",
"module": "index",
"jsnext:main": "index",
"repository": {
"type": "git",
"url": "git+https://github.com/au-phiware/d3-gup.git"
},
"keywords": [
"d3",
"d3-module",
"selection",
"data-join"
],
"author": "Corin Lawson",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/au-phiware/d3-gup/issues"
},
"homepage": "https://au-phiware.github.io/d3-gup/",
"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-gup.js -c -m -o build/d3-gup.min.js",
"postpublish": "git push && git push --tags"
},
"peerDependencies": {
"d3-selection": "*",
"d3-transition": ">=0.0.6"
},
"devDependencies": {
"docco": "^0.8.0",
"rollup": "^0.66.2",
"rollup-plugin-buble": "^0.19.2",
"tape": "^4.9.1",
"uglify-js": "^3.4.4"
}
}