-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
69 lines (69 loc) · 1.95 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
{
"name": "d3.compose",
"version": "0.15.21",
"description": "Compose complex, data-driven visualizations from reusable charts and components with d3",
"main": "build/d3.compose.js",
"jsnext:main": "index",
"scripts": {
"pretest": "npm run build",
"test": "tape test/**/*-test.js | faucet && eslint src test index.js",
"build": "rimraf build && mkdirp build && rollup -c & gulp css",
"uglify": "cd build && uglifyjs d3.compose.js --source-map d3.compose.min.js.map --comments -c -m -o d3.compose.min.js",
"docs": "rimraf _docs && yuidoc && gulp docs",
"preversion": "npm test",
"version": "npm run build && npm run uglify && gulp version:bower && git add -A",
"postversion": "git push && git push --tags",
"postpublish": "gulp publish:github"
},
"repository": {
"type": "git",
"url": "https://github.com/CSNW/d3.compose.git"
},
"keywords": [
"d3.compose",
"d3-compose",
"d3",
"compose",
"chart"
],
"author": "Tim Hall <timhall@cornerstonenw.com> (https://github.com/timhall)",
"contributors": [
"CSNW"
],
"bugs": {
"url": "https://github.com/CSNW/d3.compose/issues"
},
"homepage": "https://github.com/CSNW/d3.compose",
"license": "MIT",
"dependencies": {
"d3": "^3.5.8"
},
"devDependencies": {
"acorn": ">7.0.0",
"cryptiles": "^4.1.2",
"eslint": "^6.7.1",
"faucet": "0.0.1",
"github": "^0.2.4",
"gulp": "^4.0.2",
"gulp-bump": "^3.1.3",
"gulp-copy": "^4.0.1",
"gulp-header": "^2.0.7",
"gulp-load-plugins": "^1.6.0",
"gulp-rename": "^1.4.0",
"gulp-util": "^3.0.8",
"gulp-zip": "^5.0.0",
"inquirer": "^6.4.0",
"jquery": "^3.4.1",
"jsdom": "^8.0.0",
"lodash": ">=4.17.13",
"lodash.template": "^4.5.0",
"mime": "^1.4.1",
"node-mkdirp": "0.0.1",
"rimraf": "^2.4.4",
"rollup": "^1.15.6",
"sinon": "^1.17.3",
"tape": "^4.4.0",
"uglify-js": "^2.6.1",
"yuidocjs": "^0.10.0"
}
}