-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.67 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
58
59
60
61
62
{
"name": "awesome-sunshine",
"version": "0.0.0",
"description": "A Collection of Awesome Sunshine Scripts, Tools, Guides, and Companion Software",
"type": "module",
"private": true,
"jest": {
"collectCoverageFrom": [
"scripts/**/*.mjs"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testEnvironment": "node",
"transform": {
"^.+\\.(js|mjs)$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/(?!(github-slugger|@crowdin)/)"
]
},
"scripts": {
"build": "echo \"No build step required\"",
"lint": "awesome-lint",
"sync:readme-navigation-crowdin": "node scripts/sync-readme-navigation-crowdin.mjs",
"test": "npm-run-all test:unit test:report test:lint",
"test:lint": "eslint .",
"test:report": "jest --reporters=jest-junit",
"test:unit": "jest --coverage",
"validate:readme-navigation": "node scripts/validate-readme-navigation.mjs"
},
"devDependencies": {
"@babel/core": "8.0.1",
"@babel/preset-env": "8.0.2",
"@crowdin/crowdin-api-client": "1.56.3",
"@eslint/js": "10.0.1",
"@jest/globals": "30.4.1",
"awesome-lint": "2.3.0",
"babel-plugin-transform-import-meta": "3.0.0",
"eslint": "10.9.1",
"eslint-plugin-jest": "29.16.2",
"github-slugger": "2.0.0",
"globals": "17.11.0",
"jest": "30.4.2",
"jest-junit": "17.0.0",
"npm-run-all2": "9.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LizardByte/awesome-sunshine.git"
},
"keywords": [
"awesome",
"awesome-list",
"sunshine"
]
}