-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "g2plot-column",
"version": "1.1.2",
"description": "Custom g2plot column chart",
"main": "lib/index.js",
"license": "MIT",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"unpkg": "dist/g2plot-column.min.js",
"files": [
"dist",
"lib",
"esm",
"src"
],
"scripts": {
"start": "webpack serve --config webpack.config.dev.js",
"lib:umd": "webpack --config webpack.config.js",
"lib:cjs": "tsc -p tsconfig.json --target ES5 --module commonjs --outDir lib",
"lib:esm": "tsc -p tsconfig.json --target ES5 --module ESNext --outDir esm",
"prepublishOnly": "npm run lib:cjs && npm run lib:esm && npm run lib:umd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yujs/G2Plot-Column.git"
},
"author": "yujs",
"bugs": {
"url": "https://github.com/yujs/G2Plot-Column/issues"
},
"homepage": "https://github.com/yujs/G2Plot-Column#readme",
"peerDependencies": {
"@antv/g2plot": "^2.0.7"
},
"dependencies": {},
"devDependencies": {
"@antv/g2plot": "^2.0.9",
"@webpack-cli/serve": "^1.1.0",
"html-webpack-plugin": "^4.5.0",
"ts-loader": "^8.0.10",
"typescript": "^4.0.5",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0",
"webpack-node-externals": "^2.5.2"
}
}