-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.45 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
{
"name": "d3-tree",
"version": "1.0.25",
"description": "tree view based on d3",
"keywords": [
"d3",
"tree"
],
"main": "./dist/d3-tree",
"repository": {
"type": "git",
"url": "git://github.com/zhuyali/d3-tree.git"
},
"dependencies": {
"d3": "^4.12.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.17.0",
"babel-loader": "^7.1.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-env": "^1.6.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-2": "^6.22.0",
"cross-env": "^5.1.2",
"eslint": "^4.12.1",
"eslint-plugin-mocha": "^4.11.0",
"git-contributor": "1",
"macaca-cli": "2",
"macaca-coverage": "1",
"macaca-electron": "11",
"macaca-reporter": "1",
"macaca-wd": "3",
"pre-commit": "*",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7"
},
"scripts": {
"dev": "webpack-dev-server",
"lint": "eslint --fix lib assets test",
"dev:test": "cross-env NODE_ENV=test webpack-dev-server",
"serve": "npm run dev:test &",
"contributor": "git-contributor",
"test": "macaca run -d ./test",
"prepublish": "npm run build",
"compile": "babel lib/ --out-dir dist/ -D",
"build": "cross-env NODE_ENV=production webpack -p --progress --hide-modules && npm run compile",
"ci": "npm run lint && npm run serve && npm run test"
},
"pre-commit": [
"lint"
],
"license": "MIT"
}