forked from Serverless-Devs/Serverless-Devs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.32 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
{
"name": "@serverless-devs/s",
"version": "1.0.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.cn",
"keywords": [
"serverless",
"alibaba",
"tencent",
"azure",
"baidu",
"huawei",
"google",
"function",
"faas",
"serverless-devs"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/serverless-devs/serverless-devs"
},
"bugs": {
"email": "service@serverlessfans.com"
},
"bin": {
"s": "./bin/s"
},
"main": "",
"typings": "",
"scripts": {
"watch": "tsc -w -p compile.tsconfig.json",
"test": "nyc mocha -r ts-node/register scripts/tests/**/*.ts",
"lint": "eslint --ext .js,.ts,.tsx ",
"lint:fix": "eslint --fix --ext .js,.ts,.tsx ",
"build": "tsc -p compile.tsconfig.json",
"release": "rm -rf ./lib && tsc -p compile.tsconfig.json && npm publish",
"release-ignore": "npm publish"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"npm run lint:fix",
"git add ."
],
"**/*.{css,html,js,json,md,yaml,yml}": [
"npm run prettier:fix",
"git add ."
]
},
"dependencies": {
"@serverless-devs/s-progress-bar": "^0.0.2",
"adm-zip": "^0.4.16",
"axios": "^0.19.2",
"colors": "^1.4.0",
"commander": "^6.0.0",
"download": "^7.1.0",
"follow-redirects": "^1.13.0",
"fs-extra": "^8.1.0",
"i18n": "^0.12.0",
"inquirer": "^7.3.3",
"js-yaml": "^3.14.0",
"progress": "^2.0.3",
"rimraf": "^3.0.2",
"request": "^2.88.2",
"single-line-log": "^1.1.2",
"superagent": "^6.1.0",
"superagent-proxy": "^2.0.0"
},
"devDependencies": {
"@types/assert": "^1.5.1",
"@types/chai": "^4.2.12",
"@types/download": "^6.2.4",
"@types/fs-extra": "^9.0.1",
"@types/inquirer": "^7.3.0",
"@types/mocha": "^8.0.1",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^3.10.0",
"@typescript-eslint/parser": "^3.10.0",
"chai": "^4.2.0",
"eslint": "^7.7.0",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}