forked from quicken/aws-meerkat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 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
{
"name": "aws-code-pipeline-monitor",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:quicken/aws-code-pipeline-monitor.git",
"author": "marcel <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"build": "./build.sh",
"bundle": "./package.sh",
"docs": "typedoc",
"start": "tsc -p tsconfig.json && node -r dotenv/config ./build/index.js",
"clean": "rm -rf build build"
},
"devDependencies": {
"@aws-sdk/types": "^3.32.0",
"@types/aws-lambda": "^8.10.83",
"@types/jest": "^27.0.2",
"@types/node": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"aws-sdk-client-mock": "^0.6.2",
"dotenv": "^10.0.0",
"esbuild": "^0.12.29",
"eslint": "^7.32.0",
"jest": "^27.2.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typedoc": "^0.22.13",
"typedoc-plugin-markdown": "^3.11.14",
"typescript": "^4.4.3"
},
"dependencies": {
"@aws-sdk/client-codebuild": "^3.33.0",
"@aws-sdk/client-codedeploy": "^3.33.0",
"@aws-sdk/client-dynamodb": "^3.33.0",
"@aws-sdk/client-sts": "^3.33.0",
"@aws-sdk/util-dynamodb": "^3.33.0"
}
}