-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "@aquassay/d3-horizon",
"version": "0.5.0",
"description": "Horizon chart for D3",
"module": "src/index.js",
"main": "src/index.js",
"exports": {
"umd": "./dist/d3-horizon.min.js",
"default": "./src/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rm -rf dist && mkdir dist",
"build": "rollup -f umd -n d3 -o dist/d3-horizon.js -- src/index.js && uglifyjs dist/d3-horizon.js -c -m -o dist/d3-horizon.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aquassay/d3-horizon.git"
},
"keywords": [
"d3",
"panels",
"horizon",
"chart"
],
"author": "Aquassay",
"license": "MIT",
"bugs": {
"url": "https://github.com/Aquassay/d3-horizon/issues"
},
"homepage": "https://github.com/Aquassay/d3-horizon#readme",
"dependencies": {
"d3-array": "^3.2.0",
"d3-axis": "^3.0.0",
"d3-brush": "3.0.0",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-shape": "^3.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"rollup": "^2.76.0",
"uglify-js": "^3.16.2"
}
}