-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "d3-axes",
"version": "0.11.3",
"description": "D3 plugin to manage pairs of axes.",
"main": "d3-axes.js",
"module": "index",
"jsnext:main": "index",
"keywords": [
"d3",
"d3-module",
"axis",
"axes",
"chart",
"plot",
"graph",
"data-join"
],
"scripts": {
"clean": "rm -f d3-axes.js d3-axes.min.js",
"pretest": "npm install && rollup -c",
"test": "tape 'test/**/*-test.js'",
"preversion": "npm test",
"version": "npm run pretest && uglifyjs d3-axes.js -c -m -o d3-axes.min.js",
"postversion": "npm publish",
"postpublish": "git checkout gh-pages && git pull && npm version --no-git-tag-version $npm_package_version && git commit -m v$npm_package_version && git push && git checkout master && git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/au-phiware/d3-axes.git"
},
"author": "Corin Lawson <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/au-phiware/d3-axes/issues"
},
"homepage": "https://au-phiware.github.io/d3-axes/",
"dependencies": {
"d3-compose": "^0.1.1",
"d3-gup": "^0.5.1",
"d3-selection": "^1.3.0"
},
"devDependencies": {
"rollup": "^0.62.0",
"rollup-plugin-buble": "^0.19.2",
"tape": "^4.9.1",
"uglify-js": "^3.4.4"
}
}