-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
101 lines (101 loc) · 2.34 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
{
"name": "lambda-micro",
"version": "0.0.1",
"description": "Minimal JavaScript microservices router for AWS Lambda",
"main": "index.js",
"engines": {
"node": ">=12"
},
"release": {
"branches": [
"main"
]
},
"scripts": {
"test": "npx jest",
"lint": "npx eslint --ext .js",
"check-dependencies": "npx npm-check --skip-unused --update",
"cz": "git-cz",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidtucker/lambda-micro.git"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@commitlint/config-conventional": "^12.1.1",
"commitizen": "^4.2.3",
"commitlint": "^12.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-unicorn": "^23.0.0",
"form-data": "^4.0.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-html-reporter": "^3.3.0",
"jest-junit": "^12.0.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"prettier-eslint": "^11.0.0",
"semantic-release": "^19.0.5"
},
"keywords": [
"lambda",
"aws",
"lambda",
"router",
"framework",
"middleware",
"express"
],
"author": "David Tucker",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidtucker/lambda-micro/issues"
},
"homepage": "https://github.com/davidtucker/lambda-micro#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
2,
"always",
240
]
}
},
"dependencies": {
"ajv": "^6.12.6",
"busboy": "^1.6.0",
"url-pattern": "^1.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}