-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
88 lines (88 loc) · 2.58 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
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@mapbox/watchbot",
"version": "10.1.2",
"description": "",
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">=18"
},
"bin": {
"watchbot": "bin/watchbot.js",
"watchbot-progress": "bin/watchbot-progress.sh",
"watchbot-dead-letter": "bin/dead-letter.js"
},
"scripts": {
"build": "tsc",
"pretest": "npm run lint",
"lint": "eslint bin lib",
"lint:fix": "prettier --write '**/*.{ts,js}'",
"test": "docker build -q -t ecs-watchbot -f test/Dockerfile ./ && docker run -t ecs-watchbot npm run test-container",
"test-container": "BUCKET_NAME=watchbot-binaries tape test/*.test.js && jest test/*.test.ts",
"update-jest-snapshots": "jest -u test/*.spec.js",
"coverage": "nyc --reporter html tape test/*.test.js && opener coverage/index.html",
"create:prerelease": "node bin/create-prerelease.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mapbox/ecs-watchbot.git"
},
"author": "Mapbox",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/mapbox/ecs-watchbot/issues"
},
"homepage": "https://github.com/mapbox/ecs-watchbot#readme",
"devDependencies": {
"@aws-sdk/client-codepipeline": "^3.474.0",
"@mapbox/eslint-config-mapbox": "^2.0.1",
"@mapbox/mock-aws-sdk-js": "^1.0.0",
"@types/jest": "^29.5.5",
"@types/node": "20.7.1",
"aws-cdk-lib": "2.162.1",
"aws-sdk-client-mock": "^3.0.0",
"cli-spinner": "^0.2.10",
"constructs": "^10.0.5",
"cwlogs": "^1.0.3",
"eslint": "^6.7.2",
"eslint-plugin-node": "^10.0.0",
"fake-env": "^1.0.0",
"jest": "^29.7.0",
"meow": "^6.0.0",
"nyc": "^14.1.1",
"opener": "^1.5.1",
"prettier": "^3.1.1",
"redent": "^3.0.0",
"sinon": "15.0.2",
"tape": "^4.11.0",
"ts-jest": "^29.1.1",
"typescript": "~5.2.2"
},
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.414.0",
"@aws-sdk/client-s3": "^3.414.0",
"@aws-sdk/client-sqs": "^3.414.0",
"@mapbox/cloudfriend": "^7.1.0",
"@mapbox/watchbot-progress": "^1.1.7",
"binary-split": "^1.0.5",
"cdk-monitoring-constructs": "^8.3.0",
"fs-extra": "^8.1.0",
"inquirer": "^7.0.0",
"p-queue": "^6.2.1",
"remote-git-tags": "^3.0.0",
"stream-combiner2": "^1.1.1",
"tree-kill": "^1.2.1"
},
"peerDependencies": {
"aws-cdk-lib": "^2.162.1",
"constructs": "^10.0.5"
},
"eslintConfig": {
"extends": "@mapbox/eslint-config-mapbox",
"ignorePatterns": [
"/lib/watchbot.js",
"/lib/MapboxQueueProcessingFargateService.js",
"bin/cdk.js"
]
}
}