forked from XiaoYaoHui/serverless-tencent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.87 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
{
"name": "serverless-tencent",
"version": "3.16.10",
"description": "Serverless Tencent command line tool",
"main": "./dist/index.js",
"repository": "serverless/serverless-tencent",
"author": "Serverless, Inc.",
"bin": {
"slt": "./bin/serverless-tencent",
"serverless-tencent": "./bin/serverless-tencent"
},
"scripts": {
"lint": "eslint .",
"lint:updated": "pipe-git-updated --ext=js -- eslint",
"prettier-check:updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c",
"prebuild": "rm -fr dist",
"build": "webpack",
"prettify": "prettier --write --ignore-path .gitignore .github/workflows/**.yml tests/**/**.js src/**.js",
"test": "jest ./tests --verbose -o",
"test:coverage": "jest --silent --coverage --coverageReporters=\"text\" --coverageReporters=\"text-summary\"",
"prepare": "husky install",
"pkg:build": "node ./scripts/pkg/build.js",
"pkg:upload": "node ./scripts/pkg/upload/index.js"
},
"eslintConfig": {
"extends": "@serverless/eslint-config/node",
"root": true,
"rules": {
"no-console": "off",
"no-underscore-dangle": "off"
}
},
"eslintIgnore": [
"!/.github",
"webpack.config.js",
"docs/**"
],
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.{css,html,js,json,md,yaml,yml}": [
"prettier -c"
]
},
"dependencies": {
"@serverless/platform-client-china": "^2.3.2",
"@serverless/utils": "^4.0.0",
"adm-zip": "^0.5.4",
"ansi-escapes": "^4.3.1",
"chalk": "^4.1.0",
"child-process-ext": "^2.1.1",
"chokidar": "^3.5.1",
"ci-info": "^3.2.0",
"dayjs": "^1.10.4",
"dotenv": "^8.2.0",
"fastest-levenshtein": "^1.0.12",
"figures": "^3.2.0",
"fs-extra": "^9.1.0",
"got": "^11.8.2",
"graphlib": "^2.1.8",
"https-proxy-agent": "^5.0.0",
"inquirer-autocomplete-prompt": "^1.3.0",
"js-yaml": "^3.14.1",
"memoizee": "^0.4.14",
"minimist": "^1.2.5",
"prettyoutput": "^1.2.0",
"ramda": "^0.27.1",
"semver": "^7.3.4",
"strip-ansi": "^6.0.0",
"tencent-serverless-http": "^1.3.1",
"traverse": "^0.6.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@serverless/eslint-config": "^3.0.0",
"cos-nodejs-sdk-v5": "^2.11.3",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.22.1",
"essentials": "^1.1.1",
"git-list-updated": "^1.2.1",
"github-release-from-cc-changelog": "^2.2.0",
"husky": "^7.0.0",
"jest": "^27.3.1",
"lint-staged": "^12.1.2",
"pkg": "^5.5.1",
"prettier": "^2.4.1",
"process-utils": "^4.0.0",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"webpack-node-externals": "^3.0.0"
},
"engines": {
"node": ">=10.0"
},
"license": "MIT"
}