forked from CodeGenieApp/serverless-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 2.8 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
{
"name": "@vendia/serverless-express",
"version": "4.1.3",
"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 gateway",
"lambda",
"express",
"koa",
"hapi",
"sails",
"node.js",
"http"
],
"homepage": "https://github.com/vendia/serverless-express",
"bugs": {
"url": "https://github.com/vendia/serverless-express/issues"
},
"license": "Apache-2.0",
"files": [
"src/"
],
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/vendia/serverless-express.git"
},
"engines": {
"node": ">=12"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
2,
"always",
240
]
}
},
"eslintIgnore": [
"examples/*/node_modules"
],
"jest": {
"collectCoverageFrom": [
"src/**"
],
"testPathIgnorePatterns": [
"examples/nestjs"
]
},
"devDependencies": {
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.10",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/aws-lambda": "^8.10.71",
"acorn": "^8.0.5",
"commitizen": "^4.2.3",
"commitlint": "^11.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cz-conventional-changelog": "^3.3.0",
"ejs": "^3.1.5",
"eslint": "^7.19.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"express": "^4.17.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"node-notifier": ">=9.0.0",
"semantic-release": "^17.3.7",
"typescript": "^4.1.3"
},
"scripts": {
"test": "jest && npm run tsc",
"tsc": "tsc ./src/*.ts --outDir typescript-out",
"test:watch": "jest --watch",
"test: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"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}