-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
50 lines (50 loc) · 1.39 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
47
48
49
50
{
"name": "d3-timelines",
"version": "1.3.1",
"description": "A d3 v4 version of timeline. Can display single bar timelines, timelines with icons, and timelines that pan.",
"keywords": [
"d3",
"d3-module",
"d3-timelines"
],
"license": "BSD-3-Clause",
"main": "build/d3-timelines.js",
"jsnext:main": "index",
"homepage": "https://github.com/denisemauldin/d3-timeline",
"repository": {
"type": "git",
"url": "https://github.com/denisemauldin/d3-timeline.git"
},
"scripts": {
"pretest": "rm -rf build && mkdir build && rollup -c -f umd -n d3 -o build/d3-timelines.js -- index.js",
"test": "tape 'test/**/*-test.js'",
"prepare": "npm run test && uglifyjs build/d3-timelines.js -c -m -o build/d3-timelines.min.js",
"postpublish": "zip -j build/d3-timelines.zip -- LICENSE README.md build/d3-timelines.js build/d3-timelines.min.js"
},
"peerDependencies": {
"d3-array": "^1.2.0",
"d3-axis": "^1.0.7",
"d3-scale": "^1.0.6",
"d3-selection": "^1.1.0",
"d3-time": "^1.0.6",
"d3-time-format": "^2.0.5",
"d3-zoom": "^1.2.0"
},
"devDependencies": {
"@types/d3": "^4.5",
"rollup": "0.27",
"rollup-plugin-node-resolve": "^3.0.0",
"tape": "4",
"uglify-js": "2"
},
"dependencies": {
"d3": "^4.9.1",
"d3-array": "^1.2.0",
"d3-axis": "^1.0.7",
"d3-scale": "^1.0.6",
"d3-selection": "^1.1.0",
"d3-time": "^1.0.6",
"d3-time-format": "^2.0.5",
"d3-zoom": "^1.2.0"
}
}