-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 KB
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
{
"name": "serverless-cd-tool",
"version": "0.0.1",
"description": "Serverless-cd 工具箱",
"autoInstall": false,
"homepage": "https://www.serverless-devs.com",
"author": "Serverless-Devs",
"contributors": [],
"license": "MIT",
"main": "./dist/index.js",
"publishConfig": {
"access": "public"
},
"keywords": [
"serverless",
"serverless-cd"
],
"scripts": {
"start": "npm run watch",
"watch": "tsc -w",
"prebuild": "rimraf dist",
"build": "npm run esbuild",
"esbuild": "esbuild src/index.ts --bundle --log-level=error --minify --platform=node --format=cjs --target=node10.4 --external:@serverless-devs/core --outfile=dist/index.js",
"publish": "s cli registry publish"
},
"dependencies": {
"@serverless-devs/core": "latest",
"ali-oss": "^6.17.1",
"dotenv": "^16.0.3",
"tablestore": "^5.3.0"
},
"devDependencies": {
"@types/node": "^14.0.23",
"@types/tablestore": "^5.1.0",
"esbuild": "^0.13.8",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^4.4.2"
}
}