-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 832 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 832 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
27
28
29
30
31
{
"name": "rspi-bios",
"private": true,
"license": "GPL-3.0",
"author": "Piotr Placzek <piotrpdev@gmail.com>",
"version": "0.0.0",
"type": "module",
"engines": {
"npm": ">=10.0.0",
"node": ">=20.0.0"
},
"scripts": {
"lint": "npx eslint templates/index.html",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier templates/index.html --check",
"prettier:fix": "npm run prettier -- --write",
"check": "npm run lint && prettier",
"format": "npm run prettier:fix && npm run lint:fix"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"@html-eslint/eslint-plugin": "^0.26.0",
"@html-eslint/parser": "^0.26.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"prettier": "3.3.3"
}
}