-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 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
49
50
51
52
53
54
55
56
57
{
"name": "gamedb",
"version": "0.0.0",
"description": "Game Database - Jekyll static site with IGDB data",
"scripts": {
"test": "npm-run-all test:unit test:report test:lint",
"test:unit": "jest --coverage",
"test:report": "jest --reporters=jest-junit",
"test:lint": "eslint gh-pages-template/assets/js/**/*.js tests/**/*.js",
"lint": "eslint gh-pages-template/assets/js/**/*.js tests/**/*.js",
"lint:fix": "eslint gh-pages-template/assets/js/**/*.js tests/**/*.js --fix"
},
"jest": {
"testEnvironment": "jsdom",
"testMatch": [
"**/tests/**/*.test.js",
"**/tests/**/*.spec.js"
],
"collectCoverageFrom": [
"gh-pages-template/assets/js/*.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/tests/"
],
"coverageReporters": [
"text",
"lcov",
"html"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/preset-env": "7.29.0",
"@eslint/js": "10.0.1",
"@jest/globals": "30.2.0",
"babel-jest": "30.2.0",
"eslint": "10.0.1",
"globals": "17.3.0",
"jest": "30.2.0",
"jest-environment-jsdom": "30.2.0",
"jest-junit": "16.0.0",
"npm-run-all": "4.1.5"
},
"repository": {
"type": "git",
"url": "http://github.com/ReenigneArcher/GameDB"
}
}