-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 869 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 869 Bytes
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
{
"name": "@luxms/echarts-waterfall",
"version": "1.0.1",
"description": "Waterfall extension for Echarts",
"main": "dist/echarts-waterfall.min.js",
"author": "Sofya Shakirova",
"license": "ISC",
"keywords": [
"echarts"
],
"scripts": {
"dev": "npx webpack --mode development --watch",
"build": "npx webpack --mode production",
"release": "npx webpack --mode production && npx webpack --mode development"
},
"peerDependencies": {
"echarts": "^5.5.1",
"zrender": "^5.6.0"
},
"devDependencies": {
"echarts": "^5.5.1",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1",
"zrender": "^5.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/luxms/echarts-waterfall"
},
"publishConfig": {
"access": "public",
"registry": "https://download.luxms.com/repository/npm-luxms/"
}
}