-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 745 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 745 Bytes
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
{
"name": "sports-scores-plugin",
"version": "1.0.0",
"description": "InkyPi plugin for displaying sports scores",
"private": true,
"type": "module",
"scripts": {
"lint": "eslint src/static/js/**/*.js",
"lint:fix": "eslint src/static/js/**/*.js --fix",
"format": "prettier --write src/static/js/**/*.js",
"format:check": "prettier --check src/static/js/**/*.js",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"eslint": "^9.39.4",
"prettier": "^3.8.3",
"@eslint/js": "^9.0.0",
"vitest": "^3.0.0",
"@vitest/ui": "^3.0.0",
"@vitest/coverage-v8": "^3.0.0",
"jsdom": "^26.0.0"
}
}