forked from djfdyuruiry/ts-lambda-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.39 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
{
"name": "@daizyio/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": "3.0.0",
"repository": {
"type": "git",
"url": "https://github.com/daizyio/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 --sourceLinkTemplate https://github.com/djfdyuruiry/ts-lambda-api/blob/master/src/ --out ./docs",
"lint": "tslint 'src/**/*.ts'",
"shell": "$SHELL",
"improved-audit": "improved-yarn-audit -e $(cat .audit-exceptions)",
"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.77",
"class-transformer": "^0.3.2",
"class-validator": "^0.14.1",
"fast-json-patch": "^3.0.0-1",
"inversify": "^5.1.1",
"lambda-api": "^1.0.2",
"marky": "^1.2.2",
"openapi3-ts": "^4.1.2",
"reflect-metadata": "^0.1.13",
"semver": "^7.3.4",
"sprintf-js": "^1.1.2"
},
"devDependencies": {
"@types/js-yaml": "^4.0.1",
"@types/node": "^20.16.1",
"@types/sprintf-js": "^1.1.2",
"@types/temp": "^0.9.0",
"@aws-sdk/client-s3": "^3.0.0",
"@aws-sdk/s3-request-presigner": "^3.0.0",
"alsatian": "^3.2.1",
"fs-extra": "^11.1.1",
"improved-yarn-audit": "^2.3.3",
"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",
"tslint": "^6.1.3",
"typedoc": "^0.24.8",
"typedoc-plugin-sourcefile-link": "^1.0.3",
"typescript": "^4.9.5"
}
}