-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.04 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.04 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
{
"name": "openapi-lambda-adapter",
"description": "JavaScript client library for integrating AWS Lambdas with openapi-client-axios",
"version": "1.4.0",
"author": "idanielbot botdaniel11@gmail.com ",
"license": "MIT",
"keywords": [
"openapi",
"swagger",
"AWS",
"lambda",
"client",
"mock",
"typescript"
],
"homepage": "https://github.com/idanielbot/openapi-lambda-adapter",
"repository": {
"type": "git",
"url": ""
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"*.js",
"*.d.ts",
"*.map",
"**/*.js",
"**/*.d.ts",
"**/*.map",
"!*.test.*",
"!**/*.test.*",
"!__tests__/**",
"!src/**",
"!*.config.js"
],
"dependencies": {
"bath": "^3.0.1",
"debug": "^4.3.4",
"uuid": "^9.0.0"
},
"peerDependencies": {
"@aws-sdk/client-lambda": "^3.388.0"
},
"devDependencies": {
"@jest/types": "^29.0.3",
"@smithy/util-stream": "^2.1.1",
"@types/aws-lambda": "^8.10.119",
"@types/debug": "^4.1.7",
"@types/jest": "^27.4.0",
"@types/json-schema": "^7.0.6",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.3.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"aws-sdk-client-mock": "^3.0.0",
"axios": "^1.6.7",
"eslint": "^8.23.1",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"indent-string": "^4.0.0",
"jest": "^29.7.0",
"json-schema": "^0.4.0",
"json-schema-deref-sync": "^0.14.0",
"openapi-client-axios": "^7.5.4",
"openapi-types": "^10.0.0",
"source-map-support": "^0.5.10",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"scripts": {
"build": "tsc",
"watch-build": "tsc -w",
"prettier": "prettier --write src/** __tests__/**",
"prepare": "npm run build",
"test": "NODE_ENV=test jest --runInBand",
"lint": "eslint",
"lint:fix": "eslint --fix"
}
}