-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
84 lines (84 loc) · 2.3 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
{
"name": "tencent-serverless-http",
"version": "1.3.2",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"release": "semantic-release",
"release-local": "node -r dotenv/config node_modules/semantic-release/bin/semantic-release --no-ci",
"check-dependencies": "npx npm-check --skip-unused --update",
"lint": "eslint src examples",
"install-example-dependencies": "cd examples && npm install --prefix basic-starter basic-starter && cd .."
},
"description": "This library enables you to utilize Tencent Cloud API Gateway to respond to web and API requests using your existing Node.js application framework.",
"keywords": [
"tencent-cloud",
"serverless",
"api",
"gateway",
"scf",
"nodejs"
],
"homepage": "https://github.com/serverless-plus/tencent-serverless-http",
"bugs": {
"url": "https://github.com/serverless-plus/tencent-serverless-http/issues"
},
"license": "Apache-2.0",
"files": [
"index.js",
"src/"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/serverless-plus/tencent-serverless-http.git"
},
"engines": {
"node": ">=8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run install-example-dependencies",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add ."
]
},
"devDependencies": {
"@commitlint/config-conventional": "^6.1.0",
"@commitlint/travis-cli": "^6.1.3",
"@semantic-release/changelog": "^1.0.1",
"@semantic-release/git": "^3.0.1",
"@semantic-release/npm": "^3.0.2",
"commitizen": "^3.0.7",
"commitlint": "^6.1.0",
"cz-conventional-changelog": "^2.1.0",
"dotenv": "^8.2.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^0.15.0-rc.4",
"jest": "^24.5.0",
"lint-staged": "^7.2.0",
"semantic-release": "^15.13.8"
},
"dependencies": {
"type-is": "^1.6.16"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}