-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.87 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
{
"name": "@bjmrq/lambda-flow",
"version": "0.0.39",
"description": "A little utility to flow data in lambda functions",
"author": "Benjamin Marquis",
"license": "ISC",
"homepage": "https://www.lambdaflow.xyz/",
"repository": {
"type": "git",
"url": "https://github.com/BjMrq/LambdaFlow"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"volta": {
"node": "12.20.0",
"yarn": "1.22.10"
},
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm test",
"clean": "rimraf ./dist",
"build": "npm run clean && tsc",
"test": "jest -i --config jestconfig.json"
},
"dependencies": {
"@bjmrq/utils": "^0.0.20",
"aws-lambda": "^1.0.6",
"ramda": "^0.27.1"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.64",
"@types/http-errors": "^1.8.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.10.1",
"@types/ramda": "^0.27.30",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.8.1",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-config-hardcore": "^12.9.1",
"eslint-config-standard": "14.1.1",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-eslint-plugin": "^2.3.0",
"eslint-plugin-functional": "^3.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"eslint-plugin-unicorn": "^22.0.0",
"http-errors": "^1.8.0",
"jest": "^26.6.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.2",
"ts-node": "^9.0.0",
"tsc-watch": "^4.2.9",
"typedoc": "^0.19.2",
"typedoc-neo-theme": "^1.0.10",
"typescript": "^4.1.2"
},
"keywords": [
"aws",
"lambda",
"http",
"serverless",
"apigateway"
]
}