forked from Serverless-Devs/Serverless-Devs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.41 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
{
"name": "@serverless-devs/s",
"version": "2.1.5",
"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": "MIT",
"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",
"prewatch": "rm -rf lib/* && cp -r ./src/daemon ./lib",
"watch": "tsc -w",
"test": "jest test/special-command.test",
"prebuild": "rm -rf lib/*",
"build": "tsc && cp -r ./src/daemon ./lib",
"postbuild": "./shell/postbuild.sh",
"test:cov": "jest --coverage",
"lint": "npm run typecheck && f2elint scan -i src",
"fix": "f2elint fix",
"typecheck": "npx tsc -p tsconfig.json --noEmit",
"update": "rm -rf yarn.lock && rm -rf package-lock.json && rm -rf node_modules && yarn",
"beta": "npm publish --tag=beta"
},
"main": "./lib/index.js",
"bin": {
"s": "bin/s"
},
"devDependencies": {
"@serverless-devs/commander": "^6.0.0",
"@types/jest": "^27.4.0",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"ajv": "^8.10.0",
"babel-eslint": "^10.1.0",
"boxen": "^5.0.0",
"dotenv": "^10.0.0",
"esbuild": "^0.14.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"inquirer": "8.2.0",
"inquirer-autocomplete-prompt": "^1.3.0",
"jest": "^27.4.7",
"latest-version": "^5.1.0",
"lint-staged": "^10.0.8",
"open": "^8.4.0",
"os-locale": "5.0.0",
"prettier": "^2.2.1",
"semver": "^7.3.5",
"semver-diff": "^3.1.1",
"ts-jest": "^27.1.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"lint-staged": {
"**/*.{js,jsx,ts}": "f2elint exec eslint"
},
"dependencies": {
"@serverless-devs/core": "latest",
"@serverless-devs/ui": "latest"
}
}