-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.89 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.89 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "lambda-api-utils",
"version": "1.0.6",
"description": "This library contains utilities for use with the Lambda-Api to create rest endpoints in BFF microservices.",
"keywords": [
"aws",
"lambda",
"lambda-api",
"api gateway",
"dynamodb",
"s3",
"serverless",
"aws-lambda-stream",
"aws-kms-ee"
],
"author": "John Gilbert",
"license": "MIT",
"main": "./lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "npm run clean && npm run compile",
"compile": "babel src --out-dir lib",
"clean": "rm -rf .nyc_output/ lib/ coverage/",
"lint": "npm run lint:js",
"lint:js": "eslint --fix --format=node_modules/eslint-formatter-pretty .",
"lint:staged": "lint-staged",
"pretest": "npm run clean && npm run lint",
"test": "better-npm-run test",
"prepublishOnly": "npm run build"
},
"betterScripts": {
"test": {
"command": "nyc mocha --recursive \"./test/unit/**/*.test.js\"",
"env": {
"AWS_REGION": "us-west-2",
"KMS_REGIONS": "us-west-2",
"MASTER_KEY_ALIAS": "alias/aws-kms-ee",
"NODE_ENV": "test"
}
}
},
"lint-staged": {
"*.js": "eslint"
},
"pre-commit": "lint:staged",
"repository": {
"type": "git",
"url": "https://github.com/jgilbert01/lambda-api-utils.git"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.450.0",
"@aws-sdk/client-kms": "^3.450.0",
"@aws-sdk/client-s3": "^3.450.0",
"@aws-sdk/lib-dynamodb": "^3.450.0",
"@aws-sdk/s3-request-presigner": "3.490.0",
"@aws-sdk/util-dynamodb": "^3.450.0",
"@babel/cli": "^7.10.0",
"@babel/core": "^7.10.0",
"@babel/plugin-transform-runtime": "^7.10.0",
"@babel/preset-env": "^7.10.0",
"@babel/register": "^7.10.0",
"@babel/runtime": "^7.10.0",
"@smithy/node-http-handler": "^2.1.8",
"@smithy/util-retry": "^2.1.1",
"@smithy/util-stream": "^2.1.1",
"aws-kms-ee": "^1.0.0",
"aws-sdk-client-mock": "^3.0.0",
"babel-eslint": "^10.0.0",
"babel-plugin-istanbul": "^5.2.0",
"better-npm-run": "^0.1.1",
"bluebird": "^3.7.1",
"chai": "^4.2.0",
"debug": "^4.1.1",
"eslint": "^6.7.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-formatter-pretty": "^3.0.1",
"eslint-plugin-import": "^2.18.2",
"highland": "^2.13.5",
"lambda-api": "^1.0.0",
"lint-staged": "^9.4.3",
"lodash": "^4.17.15",
"memory-cache": "^0.2.0",
"mocha": "^10.2.0",
"nyc": "^14.1.1",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"uuid": "^9.0.1",
"zod": "^3.23.8"
},
"peerDependencies": {
"@babel/runtime": "7.x",
"@smithy/node-http-handler": "2.x",
"@smithy/util-retry": "2.x",
"aws-kms-ee": "1.x",
"bluebird": "3.x",
"debug": "4.x",
"highland": "2.x",
"lambda-api": "1.x",
"lodash": "4.x",
"memory-cache": "0.x",
"uuid": "9.x",
"zod": "^3.23.8"
}
}