-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.45 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
45
46
47
48
49
50
51
{
"name": "ServerlessDevsComponent",
"version": "0.0.1",
"description": "This is a component demo for Serverless Devs Tool ",
"autoInstall": false,
"homepage": "https://www.serverless-devs.com",
"author": "Serverless-Devs",
"contributors": [],
"license": "MIT",
"main": "./dist/index.js",
"publishConfig": {
"access": "public"
},
"keywords": [
"Serverless",
"Framework",
"Serverless-Devs",
"Serverless-Tool",
"Function Compute"
],
"scripts": {
"start": "npm run watch",
"watch": "tsc -w",
"prebuild": "rimraf dist",
"postinstall": "npm run build",
"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",
"postbuild": "node resources/copy.js"
},
"dependencies": {
"@huaweicloud/huaweicloud-sdk-core": "^3.1.18",
"@huaweicloud/huaweicloud-sdk-functiongraph": "^3.1.18",
"@huaweicloud/huaweicloud-sdk-iam": "^3.1.18",
"@serverless-devs/core": "^0.1.48",
"axios": "^1.6.7",
"compressing": "^1.6.3",
"esdk-obs-nodejs": "^3.21.6",
"fs-extra": "^11.2.0",
"inquirer": "^8.2.2",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"tty-table": "^4.2.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^14.0.23",
"esbuild": "^0.13.8",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^4.4.2"
}
}