-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.14 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.14 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
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
{
"name": "@dark-mechanicum/aws-codebuild",
"version": "1.4.1",
"description": "GitHub Action to execute AWS CodeBuild jobs",
"author": "Andrei Kazakou<a.v.kazakou@gmail.com>",
"main": "dist/index.js",
"license": "BSD-3-Clause",
"scripts": {
"compile": "ncc build src/index.ts -o dist --license licenses.txt",
"lint": "eslint .",
"test": "jest --detectOpenHandles --passWithNoTests",
"upgrade": "ncu -u"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@aws-sdk/client-cloudwatch-logs": "^3.857.0",
"@aws-sdk/client-codebuild": "^3.857.0",
"nconf": "^0.13.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^30.0.0",
"@types/nconf": "^0.10.7",
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vercel/ncc": "^0.38.3",
"copyfiles": "^2.4.1",
"eslint": "^9.32.0",
"jest": "^30.0.5",
"npm-check-updates": "^18.0.2",
"source-map-support": "^0.5.21",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.4",
"typescript-eslint": "^8.38.0"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"transform": {
"^.+\\.(ts|tsx)$": [
"ts-jest",
{
"tsconfig": "tsconfig.lint.json",
"diagnostics": true
}
]
},
"testMatch": [
"<rootDir>/__tests__/**/*.+(ts|tsx|js)"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/fixtures/",
"<rootDir>/__tests__/init/*.+(ts|tsx|js)"
],
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/src/**/*.+(ts|tsx|js)",
"<rootDir>/src/index.+(ts|tsx|js)"
],
"coveragePathIgnorePatterns": [
"<rootDir>/src/plugin/*.+(ts|tsx|js)",
"<rootDir>/src/types/*.+(ts|tsx|js)"
]
}
}