-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.26 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
{
"name": "lambda-proxy-utils",
"version": "3.0.3",
"description": "Lambda Proxy event helpers",
"author": "Geoff Dutton <[email protected]>",
"keywords": [
"aws",
"lambda",
"api gateway",
"lambda proxy"
],
"engines": {
"node": ">=10"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/geoffdutton/lambda-proxy-utils.git"
},
"homepage": "https://github.com/geoffdutton/lambda-proxy-utils",
"main": "./src/index.js",
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard",
"test": "npm run lint && nyc mocha --recursive test/",
"tdd": "mocha --watch --colors --reporter spec --recursive test/"
},
"dependencies": {
"accepts": "^1.3.7",
"binary-case": "^1.1.4",
"cookie": "^0.4.1",
"header-case-normalizer": "^1.0.3",
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.has": "^4.5.2",
"lodash.tostring": "^4.1.4",
"mime": "^2.5.2",
"type-is": "^1.6.18"
},
"devDependencies": {
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"standard": "^16.0.3"
},
"standard": {
"env": {
"mocha": true
}
},
"files": [
"src"
]
}