-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.66 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.66 KB
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
{
"name": "@tractorzoom/http-response",
"version": "3.0.34",
"description": "Library to build http responses for use in serverless projects",
"main": "index.js",
"author": "@TractorZoom",
"license": "MIT",
"scripts": {
"build": "rimraf lib && tsc && cp package.json lib",
"coverage": "jest --coverage",
"test": "jest",
"prettier:all": "prettier --write './**/*.*'"
},
"devDependencies": {
"@biomejs/biome": "1.5.1",
"@commitlint/cli": "18.4.4",
"@commitlint/config-conventional": "18.4.4",
"@semantic-release/git": "10.0.1",
"@types/aws-lambda": "8.10.131",
"@types/jest": "29.5.11",
"chance": "1.1.11",
"commitizen": "4.3.0",
"husky": "8.0.3",
"jest": "29.7.0",
"prettier": "3.1.1",
"rimraf": "5.0.5",
"semantic-release": "22.0.12",
"ts-jest": "29.1.1",
"typescript": "5.3.3"
},
"dependencies": {
"http-status-codes": "2.3.0",
"lint-staged": "15.2.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/TractorZoom/http-response.git"
},
"homepage": "https://github.com/TractorZoom/http-response",
"bugs": {
"url": "https://github.com/TractorZoom/http-response/issues"
},
"keywords": [
"aws",
"aws-lambda",
"api-gateway",
"http",
"response"
],
"lint-staged": {
"{src/**/*.ts,__tests__/**/*.spec.js}": [
"npx biome check --apply"
]
}
}