-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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
{
"name": "g2plot-lollipop",
"version": "1.2.1",
"description": "Lollipop based on G2Plot v2",
"author": "MrSmallLiu",
"license": "MIT",
"keywords": [
"g2plot",
"g2plot-lollipop",
"lollipop"
],
"homepage": "",
"repository": {
"type": "git",
"url": "git+https://github.com/MrSmallLiu/G2Plot-Lollipop.git"
},
"bugs": {
"url": "https://github.com/MrSmallLiu/G2Plot-Lollipop/issues"
},
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"unpkg": "dist/g2plot-lollipop.min.js",
"files": [
"lib",
"esm",
"dist"
],
"scripts": {
"dev": "webpack serve --config build/webpack.dev.config.js ",
"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 build/webpack.config.js"
},
"dependencies": {},
"devDependencies": {
"@antv/g2plot": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"html-webpack-plugin": "^4.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.11",
"typescript": "^4.0.5",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.11.0"
}
}