-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 984 Bytes
/
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
{
"name": "@walrus/update-deploy-config",
"version": "1.0.0",
"main": "lib/cli.js",
"repository": "[email protected]:walrus-plus/update-deploy-config.git",
"author": "wangxingkang <[email protected]>",
"license": "MIT",
"files": [
"lib"
],
"bin": {
"update-deploy": "lib/cli.js"
},
"scripts": {
"build": "father-build",
"update-deploy": "node lib/cli.js",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/parser": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/traverse": "^7.5.5",
"@babel/types": "^7.5.5",
"@walrus/shared-utils": "^0.3.0",
"common-bin": "^2.8.2"
},
"devDependencies": {
"@types/babel__traverse": "^7.0.7",
"@types/debug": "^4.1.5",
"@types/lodash": "^4.14.136",
"father-build": "^1.5.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"engines": {
"node": ">=8"
},
"publishConfig": {
"access": "public"
}
}