This repository has been archived by the owner on Nov 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.7 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
{
"name": "@airporting/middy-json-body-parser",
"version": "1.1.3",
"main": "index.js",
"repository": "[email protected]:airporting/middy-json-body-parser.git",
"author": "mathrobin <[email protected]>",
"packageManager": "[email protected]",
"type": "module",
"engines": {
"node": "18.18.2"
},
"scripts": {
"commit": "cz",
"crazy:up": "git pull && yarn set version latest && yarn up '*' && yarn install && git add package.json yarn.lock renovate.json && git status",
"lint": "eslint -c eslint.config.js",
"postupgrade": "git add package.json yarn.lock",
"prepare": "husky install",
"prettier": "prettier --check ./",
"prettier:write": "prettier --write ./",
"publish": "yarn npm publish && git add package.json yarn.lock && git commit -m 'feat(version): bump' && git push && git status",
"test": "yarn node --experimental-vm-modules $(yarn bin jest) --runInBand --config jest.config.js"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"prettier --write"
]
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/plugin-syntax-import-assertions": "7.26.0",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@jest/globals": "29.7.0",
"@ngneat/falso": "7.2.0",
"@types/jest": "29.5.14",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-json": "4.0.1",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3"
}
}