forked from jeremydaly/lambda-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.6 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
{
"name": "lambda-api",
"version": "1.0.3",
"description": "Lightweight web framework for your serverless applications",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "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 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"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/jeremydaly/lambda-api.git"
},
"keywords": [
"serverless",
"nodejs",
"api",
"AWS Lambda",
"API Gateway",
"web framework",
"json",
"schema",
"open"
],
"author": "Jeremy Daly <jeremy@jeremydaly.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeremydaly/lambda-api/issues"
},
"homepage": "https://github.com/jeremydaly/lambda-api#readme",
"peerDependencies": {
"@aws-sdk/client-s3": "^3.0.0",
"@aws-sdk/s3-request-presigner": "^3.0.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.51",
"@types/node": "^10.17.21",
"bluebird": "^3.7.2",
"coveralls": "^3.1.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^26.6.3",
"prettier": "^2.3.2",
"sinon": "^4.5.0"
},
"files": [
"index.js",
"index.d.ts",
"lib/"
]
}