-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.91 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "DomainComponent",
"version": "0.0.1",
"description": "This is fc3-domain component 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": {
"prewatch": "mkdir -p dist && cp src/schema.json dist/schema.json",
"watch": "tsc -w",
"start": "npm run watch",
"format": "prettier --write src/",
"prebuild": "rimraf dist && mkdir -p dist && cp src/schema.json dist/schema.json",
"build": "esbuild src/index.ts --bundle --log-level=error --external:proxy-agent --minify --platform=node --format=cjs --target=node10.4 --outfile=dist/index.js",
"publish": "npm i && npm run build && s registry publish",
"test": "jest --config jestconfig.json",
"postinstall": "patch-package"
},
"dependencies": {
"@alicloud/alidns20150109": "^3.4.0",
"@alicloud/fc20230330": "^4.1.0",
"@alicloud/pop-core": "^1.7.13",
"@serverless-cd/srm-aliyun-fc-domain": "^0.0.1-beta.4",
"@serverless-devs/component-interface": "^0.0.4",
"@serverless-devs/diff": "^0.0.3-beta.6",
"@serverless-devs/utils": "^0.0.15",
"ali-oss": "^6.20.0",
"inquirer": "^8.2.6",
"lodash": "^4.17.21",
"node-fetch": "^2.7.0",
"promise-retry": "^2.0.1",
"string-random": "0.1.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.11",
"esbuild": "^0.21.1",
"jest": "^29.7.0",
"patch-package": "^8.0.0",
"postinstall-prepare": "^2.0.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}