-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
82 lines (82 loc) · 2.02 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
{
"name": "setup-z3",
"version": "1.1.0",
"description": "A GitHub action to set up a specific version of the Z3 theorem prover in a GitHub Actions workflow.",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "npx ncc build src/main.ts -o dist --source-map --license licenses.txt",
"lint": "npx eslint . -c .github/linters/eslint.config.mjs",
"test": "npx jest",
"all": "npm run lint && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cda-tum/setup-z3.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"z3"
],
"author": "cda-tum",
"license": "MIT",
"bugs": {
"url": "https://github.com/cda-tum/setup-z3/issues"
},
"homepage": "https://github.com/cda-tum/setup-z3#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/tool-cache": "^2.0.2",
"@octokit/core": "^6.1.3",
"@octokit/openapi-types": "^23.0.1",
"node-fetch-retry": "^2.0.1"
},
"devDependencies": {
"@actions/exec": "^1.1.1",
"@babel/preset-env": "^7.26.8",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.20.0",
"@jest/globals": "^29.7.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.1",
"@vercel/ncc": "^0.38.3",
"babel-jest": "^29.7.0",
"eslint": "^9.20.0",
"eslint-plugin-jest": "^28.11.0",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0"
},
"jest": {
"verbose": true,
"clearMocks": true,
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**"
],
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/",
"/dist/"
]
}
}