This repository has been archived by the owner on Nov 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
79 lines (79 loc) · 2.5 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
75
76
77
78
79
{
"name": "d3kit",
"version": "3.2.0",
"description": "A kit of tools to speed D3 related project development.",
"repository": {
"type": "git",
"url": "https://github.com/twitter/d3kit"
},
"keywords": [
"d3",
"d3kit",
"visualization",
"javascript"
],
"author": [
"Krist Wongsuphasawat <[email protected]> (http://kristw.yellowpigz.com)",
"Robert Harris <[email protected]>"
],
"license": "MIT",
"main": "dist/d3kit.min.js",
"files": [
"src/**/*.*",
"dist/*.*"
],
"dependencies": {
"d3-dispatch": "^1.0.1",
"d3-selection": "^1.0.2"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-plugin-external-helpers": "^6.8.0",
"babel-plugin-istanbul": "^2.0.1",
"babel-preset-es2015": "^6.3.13",
"babelrc-rollup": "^3.0.0",
"browser-sync": "~2.14.0",
"chai": "^3.5.0",
"d3": "^4.4.1",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-react": "^5.0.1",
"gh-pages": "^0.11.0",
"karma": "~0.13.15",
"karma-chai": "^0.1.0",
"karma-coverage": "~0.5.3",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.1.0",
"karma-phantomjs-launcher": "^1.0.1",
"karma-rollup-plugin": "^0.2.4",
"lodash-es": "^4.16.4",
"mocha": "^3.0.2",
"pkgfiles": "^2.3.0",
"rollup": "^0.34.7",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-istanbul": "^1.1.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-watch": "^3.2.2",
"slimfit": "^0.4.2",
"uglifyjs": "^2.4.10"
},
"scripts": {
"rollup": "rollup -c",
"build": "npm run rollup && uglifyjs dist/d3kit.js -m -c > dist/d3kit.min.js",
"test": "NODE_ENV=test karma start --single-run",
"tdd": "NODE_ENV=test karma start",
"eslint": "eslint --ignore-path .gitignore \"src/**/*.@(js|jsx)\"",
"eslint-fix": "eslint --fix --ignore-path .gitignore \"src/**/*.@(js|jsx)\"",
"preversion": "npm run test",
"version": "npm run build && git add -A dist",
"postversion": "git push ; git push --tags; pkgfiles",
"prepublish": "pkgfiles",
"server": "browser-sync start --server 'examples' --browser \"Google Chrome\" --files \"examples/**/*.*\" --port 3003",
"dev-examples": "rollup -c rollup.config.examples.js -w & npm run server",
"build-examples": "rollup -c rollup.config.examples.js",
"gh-pages": "npm run build-examples && gh-pages -d examples"
}
}