-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
114 lines (114 loc) · 3.6 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@antv/data-set",
"version": "0.11.9",
"description": "data set with state management",
"main": "lib/index.js",
"browser": "build/data-set.js",
"module": "lib/index.js",
"dependencies": {
"@antv/hierarchy": "^0.6.0",
"@antv/util": "^2.0.0",
"d3-composite-projections": "^1.2.0",
"d3-dsv": "^1.0.5",
"d3-geo": "~1.6.4",
"d3-geo-projection": "~2.1.2",
"d3-hexjson": "^1.0.1",
"d3-hierarchy": "^1.1.5",
"d3-sankey": "^0.9.1",
"d3-voronoi": "^1.1.2",
"dagre": "^0.8.2",
"point-at-length": "^1.0.2",
"regression": "^2.0.0",
"simple-statistics": "^6.1.0",
"topojson-client": "^3.0.0",
"wolfy87-eventemitter": "^5.1.0"
},
"homepage": "https://github.com/antvis/data-set",
"repository": {
"type": "git",
"url": "git@github.com:antvis/data-set.git"
},
"bugs": {
"url": "https://github.com/antvis/data-set/issues"
},
"keywords": [
"antv",
"data-set",
"dataSet"
],
"author": "https://github.com/orgs/antvis/people",
"license": "MIT",
"scripts": {
"build": "rm -rf build && webpack",
"build-lib": "rm -rf lib && tsc",
"bundler": "electron ./bundler/app.js",
"ci": "npm run lint && npm run test && npm run test-bugs",
"coverage": "npm run coverage-generator && npm run coverage-viewer",
"coverage-generator": "torch --coverage --renderer --source-pattern src/**/*.js,src/*.js --recursive test/unit",
"coverage-viewer": "torch-coverage",
"demos": "electron ./demos/app.js",
"demos-web": "node ./demos/app.js --web --port 2045",
"dev": "npm run watch & npm run demos-web",
"dist": "rm -rf dist && webpack --output-path=./dist --mode=production",
"lint": "eslint --ext .ts ./src",
"lint-fix": "eslint --ext .ts --fix ./src",
"prepublishOnly": "npm run build-lib && npm run build && npm run dist",
"screenshot": "node ./bin/screenshot.js",
"start": "npm run dev",
"test": "torch --compile --renderer --recursive ./test/unit",
"test-bugs": "torch --compile --renderer --recursive ./test/bugs",
"test-live": "torch --compile --interactive --watch --recursive ./test/unit",
"test-bugs-live": "torch --compile --interactive --watch --recursive ./test/bugs",
"watch": "webpack --config webpack-dev.config.js",
"win-dev": "node ./bin/win-dev.js"
},
"pre-commit": {
"run": [
"lint",
"test",
"test-bugs"
],
"silent": false
},
"devDependencies": {
"@antv/torch": "^1.0.6",
"@types/chai": "^4.2.7",
"@types/d3-dsv": "^1.0.36",
"@types/d3-geo": "^1.11.1",
"@types/d3-hierarchy": "^1.1.6",
"@types/d3-sankey": "^0.11.0",
"@types/d3-voronoi": "^1.1.9",
"@types/dagre": "^0.7.42",
"@types/lodash": "^4.14.149",
"@types/regression": "^2.0.0",
"@types/topojson-client": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"awesome-typescript-loader": "^5.2.1",
"body-parser": "^1.18.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": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"get-port": "~3.2.0",
"jszip": "^3.1.5",
"lodash": "~4.17.4",
"nightmare": "~2.10.0",
"nunjucks": "~3.0.1",
"open": "~0.0.5",
"parseurl": "~1.3.2",
"pre-commit": "~1.2.2",
"prettier": "^1.19.1",
"serve-static": "~1.13.1",
"shelljs": "~0.7.8",
"string-replace-loader": "^2.1.1",
"typescript": "^3.7.3",
"webpack": "^4.41.3",
"webpack-cli": "^3.3.10"
}
}