-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 911 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
{
"name": "@aprendizap/aws-lambda-responses",
"version": "1.0.1",
"description": "This module contains some wrappers to create the response object for AWS Lambda functions.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"clean": "rm -rf dist",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"aws",
"lambda"
],
"author": "Flavio Cunha",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Fundacao-1Bi/aws-lambda-response.git"
},
"bugs": {
"url": "https://github.com/Fundacao-1Bi/aws-lambda-response/issues"
},
"homepage": "https://github.com/Fundacao-1Bi/aws-lambda-response#readme",
"devDependencies": {
"@types/jest": "^29.5.10",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}