-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.54 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "d3",
"version": "4.4.4",
"description": "Data-Driven Documents",
"keywords": [
"dom",
"visualization",
"svg",
"animation",
"canvas"
],
"homepage": "https://d3js.org",
"license": "BSD-3-Clause",
"author": {
"name": "Mike Bostock",
"url": "https://bost.ocks.org/mike"
},
"main": "build/d3.node.js",
"browser": "build/d3.js",
"module": "index",
"jsnext:main": "index",
"repository": {
"type": "git",
"url": "https://github.com/d3/d3.git"
},
"scripts": {
"pretest": "rimraf build && mkdir build && json2module package.json > build/package.js && node rollup.node",
"test": "tape 'test/**/*-test.js'",
"prepublish": "npm run test && rollup -c --banner \"$(preamble)\" -f umd -n d3 -o build/d3.js -- index.js && uglifyjs --preamble \"$(preamble)\" build/d3.js -c negate_iife=false -m -o build/d3.min.js",
"postpublish": "git push && git push --tags && cd ../d3.github.com && git pull && cp ../d3/build/d3.js d3.v4.js && cp ../d3/build/d3.min.js d3.v4.min.js && git add d3.v4.js d3.v4.min.js && git commit -m \"d3 ${npm_package_version}\" && git push && cd - && cd ../d3-bower && git pull && cp ../d3/LICENSE ../d3/README.md ../d3/build/d3.js ../d3/build/d3.min.js . && git add -- LICENSE README.md d3.js d3.min.js && git commit -m \"${npm_package_version}\" && git tag -am \"${npm_package_version}\" v${npm_package_version} && git push && git push --tags && cd - && zip -j build/d3.zip -- LICENSE README.md API.md CHANGES.md build/d3.js build/d3.min.js"
},
"devDependencies": {
"json2module": "0.0",
"package-preamble": "0.0",
"rimraf": "2",
"rollup": "^0.41.4",
"rollup-plugin-ascii": "0.0",
"rollup-plugin-node-resolve": "2",
"tape": "4",
"uglify-js": "2"
},
"dependencies": {
"d3-array": "1.0.2",
"d3-axis": "1.0.4",
"d3-brush": "1.0.3",
"d3-chord": "1.0.3",
"d3-collection": "1.0.2",
"d3-color": "1.0.2",
"d3-dispatch": "1.0.2",
"d3-drag": "1.0.2",
"d3-dsv": "1.0.3",
"d3-ease": "1.0.2",
"d3-force": "1.0.4",
"d3-format": "1.0.2",
"d3-geo": "1.4.0",
"d3-hierarchy": "1.0.3",
"d3-interpolate": "1.1.3",
"d3-path": "1.0.3",
"d3-polygon": "1.0.2",
"d3-quadtree": "1.0.2",
"d3-queue": "3.0.3",
"d3-random": "1.0.2",
"d3-request": "1.0.3",
"d3-scale": "1.0.4",
"d3-selection": "1.0.3",
"d3-shape": "1.0.4",
"d3-time": "1.0.4",
"d3-time-format": "2.0.3",
"d3-timer": "1.0.4",
"d3-transition": "1.0.3",
"d3-voronoi": "1.1.1",
"d3-zoom": "1.1.1"
}
}