-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "cicd",
"version": "0.0.3",
"description": "Serverless Devs CI/CD 组件",
"autoInstall": false,
"keywords": [
"Serverless",
"Framework",
"Serverless-Devs",
"Serverless-Tool",
"Function Compute"
],
"homepage": "https://www.serverless-devs.com",
"author": "Serverless-Devs",
"contributors": [],
"license": "MIT",
"main": "./dist/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ServerlessTool/express-alibaba"
},
"scripts": {
"start": "npm run watch",
"watch": "tsc -w",
"publish": "npm run build && s cli platform publish",
"build": "esbuild src/index.ts --bundle --log-level=error --minify --platform=node --format=cjs --target=node10.4 --external:@serverless-devs/core --outfile=dist/index.js"
},
"dependencies": {
"@serverless-devs/core": "latest"
},
"devDependencies": {
"esbuild": "^0.13.8",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^3.10.0",
"@typescript-eslint/parser": "^3.10.0",
"eslint": "^7.7.0",
"ts-node": "^8.10.2",
"typedoc": "^0.20.35",
"typescript": "^3.9.7"
}
}