-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.21 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.21 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
{
"name": "add-responsibility-lambda",
"version": "1.0.0",
"description": "Lambda for a green user to add a responsibility to their account",
"main": "index.ts",
"scripts": {
"test-unit": "jest unit --coverage --runInBand --silent",
"test-int": "jest int",
"start": "node dist/index.js",
"build": "bash build.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SafeStep/add-responsibility-lambda.git"
},
"author": "Ollie Pugh",
"license": "ISC",
"bugs": {
"url": "https://github.com/SafeStep/add-responsibility-lambda/issues"
},
"homepage": "https://github.com/SafeStep/add-responsibility-lambda#readme",
"devDependencies": {
"@types/aws-lambda": "^8.10.83",
"@types/jest": "^27.0.1",
"@types/jest-when": "^2.7.3",
"@types/uuid": "^8.3.1",
"jest": "^27.2.0",
"ts-jest": "^27.0.5",
"tslint": "^5.12.1"
},
"dependencies": {
"aws-sdk": "^2.991.0",
"base64url": "^3.0.1",
"dotenv": "^10.0.0",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0",
"typescript": "^4.5.2",
"uuid": "^8.3.2"
}
}