forked from CSNW/d3.compose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.11 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
{
"name": "d3.compose",
"version": "0.15.11",
"description": "Compose complex, data-driven visualizations from reusable charts and components with d3",
"main": "dist/d3.compose.js",
"scripts": {
"clean": "gulp clean:tmp",
"lint": "eslint src test d3.compose.js d3.compose-mixins.js d3.compose-all.js",
"test": "SET NODE_ENV=test&& mocha --compilers js:babel-core/register --recursive --require ./test/setup.js",
"test:watch": "npm test -- --watch",
"check": "npm run lint && npm run test",
"build": "gulp build:tmp",
"build:dist": "gulp build:dist",
"build:watch": "gulp build:watch",
"docs": "rimraf _docs && yuidoc && gulp docs",
"preversion": "npm run check",
"version": "npm run build:dist && 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",
"d3.chart",
"d3-chart",
"compose",
"chart"
],
"author": "Tim Hall <[email protected]> (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",
"d3.chart": "^0.2.1"
},
"devDependencies": {
"babel-core": "^6.2.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.2.0",
"expect": "^1.13.0",
"github": "^0.2.4",
"gulp": "^3.9.0",
"gulp-bump": "^1.0.0",
"gulp-copy": "0.0.2",
"gulp-header": "^1.7.1",
"gulp-load-plugins": "^1.1.0",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.3",
"gulp-rollup": "^1.4.0",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"gulp-zip": "^3.0.2",
"inquirer": "~0.8.0",
"jquery": "^2.1.4",
"jsdom": "^7.1.1",
"mocha": "^2.3.4",
"rimraf": "^2.4.4",
"rollup": "^0.21.1",
"run-sequence": "^1.1.2",
"yuidocjs": "^0.9.0"
}
}