-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
80 lines (80 loc) · 2.38 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@lambda-middleware/json-deserializer",
"version": "1.1.1",
"description": "A middleware for AWS http lambda functions to deserialize JSON request bodies into an object.",
"scripts": {
"build": "rimraf ./lib && tsc --project tsconfig.build.json",
"lint": "eslint src/**/*.ts examples/**/*.ts",
"pretest": "npm run build",
"start": "cd test && serverless offline",
"test": "npm run lint && npm run test:unit --coverage && npm run test:integration && pkg-ok",
"test:integration": "concurrently --timeout 600000 --kill-others --success first \"cd test && serverless offline\" \"wait-on http://localhost:3000/dev/status && jest -c jest.integration.config.js\"",
"test:unit": "jest",
"test:unit-coverage": "jest --coverage"
},
"files": [
"lib"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "[email protected]/dbartholomae/lambda-middleware.git",
"directory": "packages/json-deserializer"
},
"keywords": [
"aws",
"lambda",
"middleware",
"json",
"deserializer"
],
"types": "lib/index.d.ts",
"engines": {
"npm": ">= 4.0.0"
},
"private": false,
"author": {
"name": "Matt Jenner",
"email": "[email protected]",
"url": ""
},
"dependencies": {
"@lambda-middleware/utils": "^1.0.4",
"debug": ">=4.1.0",
"tslib": "^2.0.1"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.47",
"@types/debug": "^4.1.5",
"@types/jest": "^25.2.1",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"aws-lambda": "^1.0.5",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.2.7",
"jest-junit": "^10.0.0",
"pkg-ok": "^2.3.1",
"prettier": "^2.0.2",
"prettier-config-standard": "^1.0.1",
"rimraf": "^3.0.2",
"serverless": "^2.57.0",
"serverless-offline": "^8.0.0",
"serverless-webpack": "^5.5.3",
"source-map-support": "^0.5.16",
"supertest": "^4.0.2",
"ts-jest": "^25.3.1",
"ts-loader": "^6.2.2",
"typescript": "^4.5.4",
"wait-on": "^5.2.0",
"webpack": "^4.41.5"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dbartholomae/lambda-middleware/issues"
},
"homepage": "https://github.com/dbartholomae/lambda-middleware#readme"
}