-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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": "@neuprint/sunburst",
"version": "1.2.0",
"description": "sunburst plots based on the d3 library",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --open",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/connectome-neuprint/sunburst.git"
},
"author": "Jody Clements",
"license": "MIT",
"bugs": {
"url": "https://github.com/connectome-neuprint/sunburst/issues"
},
"homepage": "https://github.com/connectome-neuprint/sunburst#readme",
"peerDependencies": {
"d3": "^5.12.0"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"d3": "^5.12.0",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"prettier": "^2.5.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"terser-webpack-plugin": "^5.3.1"
}
}