forked from walterra/d3-milestones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.36 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-milestones",
"version": "1.0.0-alpha10",
"description": "A d3 based timeline visualization.",
"keywords": [
"d3",
"visualization",
"timeline"
],
"main": "build/d3-milestones.js",
"module": "src/main",
"jsnext:main": "src/main",
"homepage": "https://github.com/walterra/d3-milestones",
"repository": {
"type": "git",
"url": "https://github.com/walterra/d3-milestones.git"
},
"bugs": {
"url": "https://github.com/walterra/d3-milestones/issues"
},
"license": "Apache-2.0",
"contributors": [
"Walter Rafelsberger <[email protected]>"
],
"dependencies": {
"d3-array": "^1.2.0",
"d3-collection": "^1.0.4",
"d3-scale": "^1.0.7",
"d3-selection": "^1.1.0",
"d3-time-format": "^2.0.5"
},
"devDependencies": {
"browserify": "^14.1.0",
"catw": "^1.0.1",
"eslint": "^3.8.1",
"eslint-config-es5": "^0.5.0",
"http-server": "^0.9.0",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-rollup-preprocessor": "^5.0.1",
"karma-tap": "^3.1.1",
"karma-tap-pretty-reporter": "^3.0.5",
"less": "^2.7.1",
"rollup": "^0.53.3",
"rollup-plugin-buble": "^0.16.0",
"rollup-plugin-commonjs": "^8.0.0",
"rollup-plugin-node-builtins": "^2.0.0",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-eslint": "^3.0.0",
"rollup-watch": "^2.5.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"tape-run": "^2.1.4",
"uglify-js": "2.6.0"
},
"scripts": {
"start": "http-server",
"build": "rm -rf build && mkdir build && rollup -c",
"pretest": "browserify test/tape.js --standalone tape -o build/tape.js",
"watch": "rm -rf build && mkdir build && rollup -c --watch | npm run watch-css | http-server",
"test": "karma start karma.config.js",
"test-watch": "karma start karma.config.js --no-single-run",
"build-css": "lessc src/styles/styles.less > build/d3-milestones.css",
"watch-css": "catw -w 'src/styles/**/*.less' -c 'npm run build-css'",
"prepublish": "npm run build && npm run test && uglifyjs build/d3-milestones.js -c -m -o build/d3-milestones.min.js && npm run build-css",
"postpublish": "git push && git push --tags && zip -j build/d3-milestones.zip -- LICENSE.md README.md build/d3-milestones.css build/d3-milestones.js build/d3-milestones.min.js"
}
}