forked from antvis/G2Plot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
150 lines (150 loc) · 4.43 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "@antv/g2plot",
"version": "1.1.3",
"description": "An interactive and responsive charting library",
"keywords": [
"chart",
"plot",
"antv"
],
"author": "https://github.com/orgs/antvis/people",
"main": "lib/index.js",
"unpkg": "dist/g2plot.js",
"umd:main": "dist/g2plot.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"esm",
"dist",
"README.md",
"LICENSE"
],
"homepage": "https://g2plot.antv.vision",
"repository": {
"type": "git",
"url": "https://github.com/antvis/g2plot"
},
"scripts": {
"start": "npm run site:develop",
"site:develop": "gatsby develop --open -H 0.0.0.0",
"site:build": "npm run site:clean && gatsby build --prefix-paths",
"site:clean": "gatsby clean",
"site:deploy": "npm run site:build && gh-pages -d public",
"build": "run-s clean lib dist",
"clean": "rimraf lib esm dist",
"lib": "run-p lib:*",
"lib:cjs": "tsc -p tsconfig.json --target ES5 --module commonjs --outDir lib",
"lib:esm": "tsc -p tsconfig.json --target ES5 --module ESNext --outDir esm",
"dist": "webpack --config webpack.config.js --mode production",
"lint": "eslint --ext .ts --quiet ./src ./__tests__ ./demos",
"lint-fix": "run-s lint-fix:*",
"lint-fix:eslint": "eslint --ext .ts --fix ./src ./__tests__ ./demos",
"prettier": "prettier --write '**/*.{ts,js,css,json}'",
"lint-fix:examples": "prettier --write 'examples/**/*.{js,md}'",
"lint-staged": "lint-staged",
"test": "jest",
"test-live": "DEBUG_MODE=1 jest --watch ./__tests__",
"coverage": "jest --coverage",
"ci": "run-s lint build coverage",
"compare-live": "node scripts/compare.js",
"demos-web": "webpack-dev-server --config webpack-dev.config.js --port 2046 --openPage demos/index.html",
"changelog": "conventional-changelog -i CHANGELOG.md -a -s",
"analyze": "webpack --profile --json > dist/stats.json && webpack-bundle-analyzer ./dist/stats.json"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@antv/component": "~0.6.1",
"@antv/coord": "~0.3.0",
"@antv/dom-util": "~2.0.2",
"@antv/event-emitter": "~0.1.2",
"@antv/g-base": "~0.4.0",
"@antv/g-canvas": "~0.4.0",
"@antv/g-gesture": "~1.0.0",
"@antv/g-svg": "~0.4.0",
"@antv/g2": "~4.0.8",
"@antv/matrix-util": "~3.1.0-beta.1",
"@antv/scale": "~0.3.1",
"@antv/util": "~2.0.7",
"d3-regression": "~1.3.4",
"resize-observer-polyfill": "^1.5.1",
"tslib": "^1.11.1",
"warning": "^4.0.3"
},
"devDependencies": {
"@antv/gatsby-theme-antv": "^0.10.43",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-angular": "^8.2.0",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"babel-loader": "^8.0.6",
"colors": "^1.4.0",
"conventional-changelog-cli": "^2.0.28",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-unicorn": "^19.0.1",
"event-simulate": "^1.0.0",
"gatsby": "^2.19.15",
"gh-pages": "^2.1.1",
"husky": "^4.2.3",
"jest": "^26.0.1",
"jest-electron": "^0.1.7",
"jest-extended": "^0.11.2",
"lint-staged": "^10.0.7",
"npm-run-all": "^4.1.5",
"nunjucks": "~3.2.0",
"prettier": "^2.0.1",
"puppeteer": "^3.0.0",
"react-i18next": "^11.0.1",
"resemblejs": "^3.2.3",
"rimraf": "^3.0.0",
"ts-jest": "^25.4.0",
"ts-loader": "^7.0.0",
"typescript": "^3.5.3",
"webpack": "^4.39.2",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.9.0"
},
"jest": {
"globals": {
"ts-jest": {
"diagnostics": {
"warnOnly": true
}
}
},
"runner": "jest-electron/runner",
"testEnvironment": "jest-electron/environment",
"setupFilesAfterEnv": [
"jest-extended"
],
"preset": "ts-jest",
"collectCoverage": false,
"collectCoverageFrom": [
"src/**/*.{ts,js}",
"!**/node_modules/**",
"!**/vendor/**"
],
"testRegex": "/__tests__/.*-spec\\.ts?$"
},
"lint-staged": {
"*.{js,css,json}": [
"prettier --write"
],
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"license": "MIT"
}