generated from LizardByte/template-base
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.11 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
{
"name": "lizardbyte-actions",
"repository": {
"type": "git",
"url": "git+https://github.com/LizardByte/actions.git"
},
"version": "0.0.0",
"description": "Reusable actions for GitHub workflows.",
"license": "MIT",
"funding": "https://app.lizardbyte.dev",
"homepage": "https://github.com/LizardByte/actions#readme",
"bugs": {
"url": "https://github.com/LizardByte/actions/issues"
},
"keywords": [
"github",
"actions"
],
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/preset-env": "7.29.2",
"@eslint/js": "10.0.1",
"@jest/globals": "30.3.0",
"eslint": "10.0.3",
"eslint-plugin-jest": "29.15.0",
"globals": "^17.0.0",
"jest": "30.3.0",
"jest-junit": "16.0.0",
"npm-run-all": "4.1.5"
},
"scripts": {
"test": "npm-run-all test:unit test:report test:lint",
"test:unit": "jest --coverage",
"test:report": "jest --reporters=jest-junit",
"test:lint": "eslint ."
},
"jest": {
"collectCoverageFrom": [
"actions/**/*.js"
],
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.js"
]
}
}