-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
32 lines (32 loc) · 864 Bytes
/
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
{
"name": "sankey-plus",
"repository": "https://github.com/tomshanley/sankey-plus",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"version": "0.7.0",
"description": "A JavaScript library for computing and drawing Sankey graphs.",
"main": "src/sankeyPlus.js",
"author": {
"name": "Tom Shanley",
"url": "https://www.tomshanley.co.nz/"
},
"license": "ISC",
"scripts": {
"build": "rimraf dist && webpack --mode production --config webpack.build.config.js"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.20.3",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.3.0",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"d3": "^7.3.0"
}
}