-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "nice-lambda",
"version": "3.0.0",
"description": "A nice way to make AWS Lambda functions and call them",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "./node_modules/.bin/tsc",
"prepublish": "./node_modules/.bin/tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lafiosca/nice-lambda.git"
},
"keywords": [
"aws",
"lambda",
"promise",
"async",
"api",
"post",
"handler",
"typescript"
],
"author": "Joe Lafiosca <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lafiosca/nice-lambda/issues"
},
"homepage": "https://github.com/lafiosca/nice-lambda#readme",
"dependencies": {
"@hapi/boom": "^9.1.0",
"aws-sdk": "^2.668.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.51",
"@types/lodash": "^4.14.150",
"@types/node": "^13.13.4",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-plugin-import": "^2.20.2",
"typescript": "^3.8.3"
}
}