-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
40 lines (40 loc) · 1 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
{
"name": "d3-downloadable",
"version": "2.1.0",
"description": "D3.js plugin to make svg downloadable",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"example": "webpack-dev-server --mode=development",
"deploy": "webpack --mode=production && gh-pages -d example",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://[email protected]/likr/d3-downloadable.git"
},
"author": "Yosuke Onoue <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/likr/d3-downloadable/issues"
},
"homepage": "https://github.com/likr/d3-downloadable",
"peerDependencies": {
"d3": "*"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"d3": "^5.6.0",
"gh-pages": "^1.2.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"svg-dataurl": "^1.0.0"
}
}