-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
105 lines (105 loc) · 3.2 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": "tencent-asw",
"main": "src/serverless.ts",
"publishConfig": {
"access": "public"
},
"description": "Tencent Cloud Serverless Component of Web Frameworks",
"scripts": {
"bootstrap": "ts-node ./scripts/bootstrap.ts",
"test": "jest",
"deploy": "ts-node ./scripts/deploy.ts",
"change:version": "ts-node ./scripts/version.ts",
"example": "ts-node ./scripts/example.ts",
"commitlint": "commitlint -f HEAD@{15}",
"lint": "eslint --ext .js,.ts,.tsx .",
"lint:fix": "eslint --fix --ext .js,.ts,.tsx .",
"prettier": "prettier --check '**/*.{css,html,js,ts,json,md,yaml,yml}'",
"prettier:fix": "prettier --write '**/*.{css,html,js,ts,json,md,yaml,yml}'",
"release": "semantic-release",
"release-local": "node -r dotenv/config node_modules/semantic-release/bin/semantic-release --no-ci --dry-run",
"check-dependencies": "npx npm-check --skip-unused --update"
},
"husky": {
"hooks": {
"pre-commit": "ygsec && lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "ygsec && npm run lint:fix && npm run prettier:fix"
}
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"npm run lint:fix",
"git add ."
],
"**/*.{css,html,js,ts,json,md,yaml,yml}": [
"npm run prettier:fix",
"git add ."
]
},
"author": "Tencent Cloud, Inc.",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.4",
"@semantic-release/release-notes-generator": "^9.0.1",
"@serverless/platform-client-china": "^2.1.12",
"@types/fs-extra": "^9.0.6",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.20",
"@types/js-yaml": "^4.0.0",
"@types/node": "^15.0.2",
"@types/semver": "^7.3.5",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"@ygkit/secure": "0.0.3",
"axios": "^0.19.2",
"babel-eslint": "^10.1.0",
"chalk": "^4.1.0",
"commander": "^7.0.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"fs-extra": "^9.1.0",
"husky": "^4.2.5",
"inquirer": "^8.0.0",
"jest": "^26.6.3",
"js-yaml": "^4.0.0",
"lint-staged": "^10.0.8",
"ncp": "^2.0.0",
"ora": "^5.3.0",
"prettier": "^1.19.1",
"semantic-release": "^17.0.4",
"semver": "^7.3.5",
"ts-jest": "^26.5.0",
"ts-node": "^9.1.1",
"typescript": "~4.1.x",
"yargs": "^16.2.0"
},
"directories": {
"doc": "docs",
"example": "examples"
},
"keywords": [
"framework",
"serverless",
"serverless-framework",
"serverless-components",
"tencent-cloud"
],
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/serverless-components/tencent-http.git"
},
"bugs": {
"url": "https://github.com/serverless-components/tencent-http/issues"
},
"homepage": "https://github.com/serverless-components/tencent-http#readme"
}