-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 986 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
33
34
35
36
37
38
39
{
"name": "maturity-radar",
"version": "1.0.0",
"description": "A simple JS library for embedding a maturity radar, given axis definitions and target/actual values",
"main": "index.js",
"scripts": {
"build": "webpack",
"start": "webpack-dev-server --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kolektiv/maturity-radar.git"
},
"keywords": [
"maturity",
"radar",
"d3"
],
"author": "Andrew Cherry",
"license": "MIT",
"bugs": {
"url": "https://github.com/kolektiv/maturity-radar/issues"
},
"homepage": "https://github.com/kolektiv/maturity-radar#readme",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.5.1",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"d3-array": "^1.2.0",
"d3-interpolate": "^1.1.5",
"d3-scale": "^1.0.6",
"d3-selection": "^1.1.0",
"d3-shape": "^1.2.0"
}
}