-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.71 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.71 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
61
62
63
64
65
66
67
{
"name": "@tomassabol/lambda-api",
"version": "1.3.0",
"description": "Lightweight web framework for your serverless applications",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "tsd && jest unit",
"test:types": "tsd",
"test:unit": "jest unit",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"test-cov": "jest unit --coverage",
"test-ci": "npm run lint:check && npm run prettier:check && jest unit --coverage",
"prepublishOnly": "npm test && npm run lint:check",
"changelog": "git log $(git describe --tags --abbrev=0)..HEAD --oneline"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomassabol/lambda-api.git"
},
"keywords": [
"serverless",
"nodejs",
"api",
"AWS Lambda",
"API Gateway",
"web framework",
"json",
"schema",
"open"
],
"author": "Tomas Sabol <hi@tomassabol.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomassabol/lambda-api/issues"
},
"homepage": "https://github.com/tomassabol/lambda-api#readme",
"peerDependencies": {
"@aws-sdk/client-s3": "^3.0.0",
"@aws-sdk/s3-request-presigner": "^3.0.0",
"lambda-warmer": "^1.0.0"
},
"peerDependenciesMeta": {
"lambda-warmer": {
"optional": true
}
},
"devDependencies": {
"@types/aws-lambda": "^8.10.159",
"@types/node": "^22.19.3",
"bluebird": "^3.7.2",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^30.2.0",
"prettier": "^3.7.4",
"sinon": "^21.0.1",
"tsd": "^0.33.0"
},
"files": [
"index.js",
"index.d.ts",
"lib/"
]
}