-
Notifications
You must be signed in to change notification settings - Fork 672
/
package.json
147 lines (147 loc) · 3.53 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "@vendia/serverless-express",
"version": "3.4.0-rc2",
"description": "This library enables you to utilize AWS Lambda and Amazon API Gateway to respond to web and API requests using your existing Node.js application framework.",
"keywords": [
"aws",
"serverless",
"api",
"api gateway",
"lambda",
"express",
"http"
],
"homepage": "https://github.com/vendia/serverless-express",
"bugs": {
"url": "https://github.com/vendia/serverless-express/issues"
},
"license": "Apache-2.0",
"files": [
"index.js",
"middleware.js",
"src/"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/vendia/serverless-express.git"
},
"engines": {
"node": ">=6"
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
],
"plugins": [
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/npm",
{
"npmPublish": true,
"tarballDir": "dist"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md",
"dist/**/*.{js|css}"
],
"message": "chore(release): version ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"assets": "dist/*.tgz"
}
]
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run install-example-dependencies && npm test",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
2,
"always",
240
]
}
},
"eslintIgnore": [
"examples/*/node_modules"
],
"jest": {
"collectCoverageFrom": [
"src/*"
]
},
"devDependencies": {
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/travis-cli": "^11.0.0",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.5",
"commitizen": "^4.2.2",
"commitlint": "^11.0.0",
"cz-conventional-changelog": "^2.1.0",
"dot-prop": ">=4.2.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^0.15.0-rc.4",
"jest": "^24.5.0",
"lint-staged": "^7.2.0",
"lodash": ">=4.17.19",
"semantic-release": "^17.2.3"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"cz": "git-cz",
"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",
"lint": "eslint src examples",
"install-example-dependencies": "cd examples && npm install --prefix basic-starter basic-starter && cd .."
},
"dependencies": {
"binary-case": "^1.0.0",
"type-is": "^1.6.16"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}