-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.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
{
"name": "@ematipico/middy-request-response",
"version": "1.0.1",
"description": "Creates a pair request/response objects from AWS lambda",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"test:ci": "jest --coverage",
"release": "standard-version",
"lint": "eslint ./src --ext .ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ematipico/middy-request-response.git"
},
"engines": {
"node": ">=10"
},
"files": [
"lib/*"
],
"keywords": [
"middy",
"AWS",
"API Gateway"
],
"author": "emanuele",
"license": "MIT",
"bugs": {
"url": "https://github.com/ematipico/middy-request-response/issues"
},
"homepage": "https://github.com/ematipico/middy-request-response#readme",
"peerDependencies": {
"@middy/core": "1.0.0"
},
"devDependencies": {
"@middy/core": "1.0.0",
"@types/aws-lambda": "8.10.51",
"@types/jest": "25.2.1",
"@types/node": "13.13.4",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-prettier": "3.1.2",
"jest": "25.5.4",
"prettier": "2.0.5",
"standard-version": "7.1.0",
"ts-jest": "25.4.0",
"typescript": "3.8.3"
}
}