-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.06 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
{
"name": "trade-kline",
"version": "1.0.0",
"description": "k线插件,包含深度图",
"main": "dist/zkline.umd.js",
"module": "lib/index.js",
"scripts": {
"start": "webpack-dev-server",
"build": "./node_modules/.bin/babel src -d lib",
"build:umd": "webpack --config ./webpack.config.umd.js",
"prepublishOnly": "npm run build && npm run build:umd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zzcwoshizz/zkline.git"
},
"keywords": [
"kline,depth,k线,深度,区块链,比特币,canvas"
],
"author": "zhichao.zhang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zzcwoshizz/zkline/issues"
},
"homepage": "https://github.com/zzcwoshizz/zkline#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.4",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3",
"webpack-dev-server": "^3.1.4"
},
"files": [
"lib",
"dist"
]
}