forked from jeremydaly/lambda-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.71 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
60
61
62
63
{
"name": "simple-lambda-api",
"version": "0.1.0",
"description": "Tiny web framework for single-route serverless functions, based on Lambda API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "rimraf dist && tsc",
"test": "jest unit",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"test-cov": "jest unit --coverage",
"test-ci": "npm run lint:check && jest unit --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prepublishOnly": "npm run build && npm test && npm run lint:check",
"changelog": "git log $(git describe --tags --abbrev=0)..HEAD --oneline"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dolsem/simple-lambda-api.git"
},
"keywords": [
"serverless",
"nodejs",
"api",
"AWS Lambda",
"API Gateway",
"web framework",
"json",
"schema",
"open"
],
"author": "Denis Olsem <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dolsem/simple-lambda-api/issues"
},
"homepage": "https://github.com/dolsem/simple-lambda-api#readme",
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/aws-lambda": "^8.10.51",
"@types/node": "^10.17.21",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"aws-sdk": "^2.664.0",
"coveralls": "^3.1.0",
"eslint": "^8.31.0",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"sinon": "^4.5.0",
"ts-toolbelt": "^9.6.0",
"typedoc": "^0.23.21",
"typescript": "^4.9.3"
},
"files": [
"dist/"
],
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}