-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
78 lines (78 loc) · 2.24 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
{
"name": "@antv/hierarchy",
"version": "0.6.14",
"description": "layout algorithms for visualizing hierarchical data",
"main": "build/hierarchy.js",
"browser": "build/hierarchy.js",
"module": "lib/index.js",
"keywords": [
"antv",
"hierarchy"
],
"scripts": {
"build": "webpack",
"build-lib": "babel src --out-dir lib",
"ci": "npm run lint && npm run dist",
"compress": "uglifyjs -c -m -o dist/hierarchy.min.js -- build/hierarchy.js",
"demos-web": "node ./demos/app.js --web --port 2045",
"dev": "npm run watch & npm run demos-web",
"dist": "npm run mkdir-dist && npm run build && npm run compress",
"lint": "eslint --ext .html,.js ./",
"lint-fix": "eslint --ext .html,.js --fix ./",
"mkdir-dist": "node ./bin/mkdir-dist.js",
"prepublishOnly": "npm run build-lib && npm run dist",
"screenshot": "node ./bin/screenshot.js",
"start": "npm run dev",
"watch": "webpack --config webpack-dev.config.js",
"win-dev": "node ./bin/win-dev.js"
},
"pre-commit": {
"run": [
"lint",
"test"
],
"silent": false
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "~8.0.3",
"babel-loader": "^8.0.0",
"babel-plugin-transform-remove-strict-mode": "~0.0.2",
"chai": "~4.1.2",
"cheerio": "~1.0.0-rc.2",
"commander": "~2.12.2",
"connect": "~3.6.5",
"d3-queue": "~3.0.7",
"debug": "~3.1.0",
"eslint": "~3.19.0",
"eslint-config-airbnb": "~15.0.1",
"eslint-config-egg": "~4.2.0",
"eslint-plugin-html": "~3.1.1",
"get-port": "~3.2.0",
"nightmare": "~2.10.0",
"nunjucks": "~3.0.1",
"open": "~0.0.5",
"parseurl": "~1.3.2",
"pre-commit": "~1.2.2",
"serve-static": "~1.13.1",
"shelljs": "~0.7.8",
"uglify-js": "~3.1.10",
"webpack": "~3.10.0"
},
"homepage": "https://github.com/antvis/hierarchy",
"repository": {
"type": "git",
"url": "[email protected]:antvis/hierarchy.git"
},
"bugs": {
"url": "https://github.com/antvis/hierarchy/issues"
},
"author": "https://github.com/orgs/antvis/people",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "MIT"
}