-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·81 lines (81 loc) · 2.04 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
{
"name": "@gosls/tencent-pyramid",
"description": "Tencent Cloud Python Pyramid Serverless Component",
"version": "0.0.3",
"main": "serverless.js",
"publishConfig": {
"access": "public"
},
"keywords": [
"pyramid",
"serverless",
"serverless-component",
"serverlesscomponent",
"tencent"
],
"scripts": {
"commitlint": "commitlint -f HEAD@{15}",
"test": "tape *.test.js",
"lint": "eslint --ext .js,.ts,.tsx .",
"lint:fix": "eslint --fix --ext .js,.ts,.tsx .",
"prettier": "prettier --check **/*.{css,html,js,json,md,yaml,yml}",
"prettier:fix": "prettier --write **/*.{css,html,js,json,md,yaml,yml}",
"release": "standard-version"
},
"author": "Dfounderliu",
"license": "Apache-2.0",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --fix --ext .js,.ts,.tsx .",
"git add ."
],
"**/*.{css,html,js,json,md,yaml,yml}": [
"npm run prettier:fix",
"git add ."
]
},
"standard-version": {
"skip": {
"tag": false
}
},
"dependencies": {
"@serverless/core": "^1.1.1",
"@serverless/tencent-apigateway": "^2.0.4",
"@serverless/tencent-scf": "^2.0.9",
"ext": "^1.4.0",
"type": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"babel-eslint": "9.0.0",
"eslint": "5.6.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.15.3",
"standard-version": "^7.0.1",
"tape": "^4.12.0"
},
"directories": {
"doc": "docs",
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gosls/tencent-pyramid.git"
},
"bugs": {
"url": "https://github.com/gosls/tencent-pyramid/issues"
},
"homepage": "https://github.com/gosls/tencent-pyramid#readme"
}