-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"name": "@lizardbyte/lizardbyte.github.io",
"version": "0.0.0",
"description": "LizardByte's Jekyll website",
"files": [
"assets/js/release-versions.js"
],
"private": true,
"jest": {
"collectCoverageFrom": [
"assets/js/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.cjs"
]
},
"scripts": {
"build": "echo \"No Node.js build step required\"",
"test": "npm-run-all test:unit test:report test:lint",
"test:lint": "eslint assets/js/release-versions.js tests",
"test:report": "jest --reporters=jest-junit",
"test:unit": "jest --coverage"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@jest/globals": "30.5.2",
"eslint": "10.11.0",
"eslint-plugin-jest": "29.16.6",
"globals": "17.12.0",
"jest": "30.5.2",
"jest-environment-jsdom": "30.5.2",
"jest-junit": "17.0.0",
"npm-run-all2": "9.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LizardByte/LizardByte.github.io.git"
}
}