forked from Serverless-Devs/Serverless-Devs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.47 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@serverless-devs/s",
"version": "3.1.2",
"description": "Serverless devs tool, serverless developer tool, supports Alibaba cloud, AWS, azure, baidu cloud, Huawei cloud, Google cloud and Tencent cloud.",
"homepage": "https://www.serverless-devs.com",
"keywords": [
"serverless",
"alibaba",
"tencent",
"azure",
"baidu",
"huawei",
"google",
"function",
"faas",
"serverless-devs"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"license": "Apache 2.0",
"repository": {
"type": "git",
"url": "https://github.com/Serverless-Devs/Serverless-Devs"
},
"bugs": {
"url": "https://github.com/Serverless-Devs/Serverless-Devs/issues"
},
"scripts": {
"start": "npm run watch",
"test": "jest --testTimeout 10000",
"test:watch": "jest --testTimeout 10000 --watchAll",
"format": "prettier --write src/ __tests__/**/*.test.ts",
"watch": "npm run build -- --watch",
"prebuild": "cross-os prebuild",
"build": "node ./scripts/build.js",
"build:ci": "node ./scripts/build.js",
"pkg": "pkg . --out-path releases",
"prepublishOnly": "npm run build",
"beta": "npm publish --tag=beta",
"canary": "npm publish --tag=canary",
"pub": "npm publish",
"eslint": "eslint . --ext .ts,.tsx",
"eslint:fix": "eslint . --ext .ts,.tsx --fix"
},
"cross-os": {
"prebuild": {
"darwin": "rm -rf node_modules && npm install --production false",
"linux": "rm -rf node_modules && npm install --production false",
"win32": "rmdir /s /q node_modules && npm install --production false"
}
},
"pkg": {
"scripts": [
"./lib/daemon/**/*.js"
]
},
"main": "./lib/index.js",
"bin": {
"s": "bin/s"
},
"engines": {
"node": ">=14.14.0"
},
"devDependencies": {
"@serverless-devs/core": "^0.1.67-beta.1",
"@serverless-devs/credential": "^0.0.9",
"@serverless-devs/engine": "^0.1.5-beta.1",
"@serverless-devs/load-application": "^0.0.14",
"@serverless-devs/load-component": "^0.0.8",
"@serverless-devs/logger": "^0.0.5",
"@serverless-devs/parse-spec": "^0.0.28",
"@serverless-devs/registry": "^0.0.10",
"@serverless-devs/secret": "^0.0.2",
"@serverless-devs/utils": "^0.0.16",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.8",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.14.201",
"@types/node": "^20.9.1",
"@types/semver": "^7.5.5",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"ajv": "^8.12.0",
"axios": "^1.6.2",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"cross-os": "^1.5.0",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"esbuild": "^0.19.12",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"fs-extra": "^11.1.1",
"global-agent": "^3.0.0",
"inquirer": "^9.2.12",
"inquirer-autocomplete-prompt": "^3.0.1",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"latest-version": "^7.0.0",
"leven": "^4.0.0",
"lodash": "^4.17.21",
"pkg": "^5.8.1",
"prettier": "^3.1.0",
"prettyjson": "^1.2.5",
"rimraf": "^5.0.5",
"semver": "^7.5.4",
"semver-diff": "^4.0.0",
"strip-ansi": "^7.1.0",
"table-layout": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"lint-staged": {
"**/*.{js,jsx,ts}": "f2elint exec eslint"
}
}