-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
42 lines (42 loc) · 889 Bytes
/
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
{
"name": "lambda-stream",
"version": "0.5.0",
"description": "awslambda.streamifyResponse, but locally and with typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/astuyve/lambda-stream/",
"keywords": [
"serverless",
"lambda",
"aws",
"stream"
],
"scripts": {
"test": "jest",
"build": "tsc",
"format": "prettier --write ."
},
"author": "AJ Stuyvenberg",
"license": "MIT",
"devDependencies": {
"@types/aws-lambda": "^8.10.119",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
".(ts|tsx)": "ts-jest"
}
}
}