-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.17 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
{
"author": {
"email": "[email protected]",
"name": "Raxvis"
},
"dependencies": {
"binary-case": "^1.1.4",
"cookie": "^1.0.0",
"path-to-regexp": "^8.2.0"
},
"description": "Lambdify is a set of tools that makes building and consuming AWS Lambda functions easier",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"express": "4.21.1",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.10"
},
"engines": {
"node": ">=8.10"
},
"files": [
"lib/",
"helpers/",
"router/",
"server/"
],
"homepage": "https://github.com/Raxvis/lambdify",
"husky": {
"hooks": {
"pre-commit": "yarn staged"
}
},
"license": "MIT",
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --config ./.prettierrc.json --write"
]
},
"main": "index.js",
"name": "lambdify",
"scripts": {
"canary": "npm publish --tag canary",
"clean": "npx @biomejs/biome check --write",
"lint": "npx @biomejs/biome format --write **/*.js",
"prettify": "npx @biomejs/biome lint --write **/*.js",
"staged": "lint-staged",
"test": "./node_modules/.bin/jest"
},
"version": "4.6.0"
}