-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
80 lines (80 loc) · 2.45 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
72
73
74
75
76
77
78
79
80
{
"name": "ts-lambda-api",
"description": "Build REST API's using Typescript & AWS Lambda. Support for decorator based routing and dependecy injection using InversifyJS. This project is built on top of the wonderful lambda-api package.",
"version": "2.4.2",
"repository": {
"type": "git",
"url": "https://github.com/djfdyuruiry/ts-lambda-api.git"
},
"scripts": {
"build": "yarn lint && rm -rf dist && tsc && yarn docs",
"build-all": "yarn install && yarn build && yarn build-tests",
"build-tests": "rm -rf ./tests/js && tsc -p ./tests",
"clean-install": "rm -rf node_modules && yarn install",
"docs": "rm -rf ./docs && typedoc --entryPoints ./src/ts-lambda-api.ts --excludePrivate --includeVersion --gitRevision master --out ./docs",
"lint": "eslint 'src/**/*.ts'",
"shell": "$SHELL",
"improved-audit": "improved-yarn-audit --fail-on-missing-exclusions ",
"test": "yarn build-all && yarn improved-audit && scripts/runTests.sh"
},
"main": "dist/ts-lambda-api.js",
"typings": "dist/ts-lambda-api.d.ts",
"author": "Matthew Snoddy",
"license": "MIT",
"files": [
"README.md",
"LICENSE",
"dist/**/*"
],
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 70,
"statements": 70,
"functions": 70,
"branches": 50,
"exclude": [
"tests/**/*",
"src/util/RequestBuilder.ts"
]
},
"dependencies": {
"@types/aws-lambda": "^8.10.98",
"fast-json-patch": "^3.1.1",
"inversify": "^6.0.1",
"lambda-api": "^1.0.2",
"marky": "^1.2.4",
"openapi3-ts": "^4.1.2",
"reflect-metadata": "^0.1.13",
"sprintf-js": "^1.1.2"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.0.0",
"@aws-sdk/s3-request-presigner": "^3.0.0",
"@types/js-yaml": "^4.0.1",
"@types/node": "^20.4.1",
"@types/sprintf-js": "^1.1.2",
"@types/temp": "^0.9.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"alsatian": "^3.2.1",
"eslint": "^8.44.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.4.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"fs-extra": "^11.1.1",
"improved-yarn-audit": "^3.0.0",
"js-yaml": "^4.1.0",
"junit-bark": "^1.3.1",
"md5-file": "^5.0.0",
"nyc": "^15.1.0",
"tap-spec": "^5.0.0",
"temp": "^0.9.4",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"resolutions": {
"trim": "^1.0.1",
"semver": "^7.5.2"
}
}