-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 792 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 792 Bytes
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
{
"name": "lambda-http-utils",
"version": "0.1.4",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/nyc ./node_modules/.bin/mocha",
"report-coverage":
"./node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "./node_modules/.bin/eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/allanbian1017/lambda-http-utils.git"
},
"homepage": "https://github.com/allanbian1017/lambda-http-utils",
"keywords": ["serverless", "aws", "lambda"],
"author": "Allan Bian <allanbian@gmail.com>",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"codecov": "^3.0.2",
"eslint": "^4.15.0",
"eslint-config-google": "^0.9.1",
"mocha": "^4.1.0",
"nyc": "^11.4.1"
}
}