-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 929 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 929 Bytes
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": "opa-rego-test-action",
"scripts": {
"build": "npx ncc build src/index.ts -o dist --source-map",
"test": "npx jest",
"local": "npx ts-node src/index.ts",
"local:resultProcessing": "npx ts-node ./src/testResultProcessing.ts"
},
"author": "Masterpoint",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@vercel/ncc": "^0.38.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupFiles": [
"./.jest/setupTests.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/mockResults.ts"
]
}
}