-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 2.15 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
{
"name": "@dark-mechanicum/aws-codebuild",
"version": "1.4.0",
"description": "GitHub Action to execute AWS CodeBuild jobs",
"author": "Andrei Kazakou<[email protected]>",
"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.10.1",
"@actions/github": "^6.0.0",
"@aws-sdk/client-cloudwatch-logs": "^3.609.0",
"@aws-sdk/client-codebuild": "^3.609.0",
"nconf": "^0.12.1",
"tslib": "^2.6.3"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/nconf": "^0.10.6",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vercel/ncc": "^0.38.1",
"copyfiles": "^2.4.1",
"eslint": "^9.6.0",
"jest": "^29.7.0",
"npm-check-updates": "^16.14.20",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.15.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"
},
"globals": {
"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)"
]
}
}