forked from jeremydaly/lambda-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.5 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
{
"name": "lambda-api",
"version": "0.10.7",
"description": "(EDITED) Lightweight web framework for your serverless applications",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha --check-leaks --recursive",
"test-cov": "nyc --reporter=html mocha --check-leaks --recursive",
"test-ci": "nyc npm test && nyc report --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint ."
},
"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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeremydaly/lambda-api/issues"
},
"homepage": "https://github.com/jeremydaly/lambda-api#readme",
"dependencies": {},
"devDependencies": {
"@types/aws-lambda": "^8.10.15",
"@types/node": "^10.12.12",
"aws-sdk": "^2.370.0",
"bluebird": "^3.5.3",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.14.0",
"istanbul": "^0.4.5",
"mocha": "^4.1.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.9.0",
"sinon": "^4.5.0"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"index.d.ts",
"lib/"
],
"engines": {
"node": ">= 8.10.0"
}
}