forked from g0e/ccd3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 KB
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
{
"name": "im-ccd3",
"version": "1.3.8",
"description": "customizable chart for d3.js",
"main": "ccd3.js",
"scripts": {
"eslint": "npx eslint src/",
"test": "npm run eslint && npm run test:jest",
"test:jest": "npx jest",
"build:js": "npx gulp buildJs",
"build:css": "npx gulp buildCss",
"watch:js": "npx gulp watchJs",
"watch:css": "npx gulp watchCss",
"watch": "npx gulp watch",
"minify:js": "npx gulp minifyJs",
"minify:css": "npx gulp minifyCss",
"minify": "npx gulp minify",
"build": "npx gulp default"
},
"engines": {
"node": "^10.13.0"
},
"repository": {
"type": "git",
"url": "git://github.com/g0e/ccd3.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/g0e/ccd3/issues"
},
"homepage": "http://g0e.net/ccd3/",
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"babel-jest": "^24.9.0",
"eslint": "^6.5.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.2.0",
"gulp-eslint": "^6.0.0",
"gulp-rename": "^1.4.0",
"gulp-terser": "^1.2.0",
"http-server": "^0.11.1",
"jasmine": "^3.5.0",
"jest": "^24.9.0",
"jest-image-snapshot": "^2.11.0",
"puppeteer": "^1.20.0"
},
"dependencies": {}
}