-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 879 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 879 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": "userscripts",
"type": "module",
"version": "0.1.0",
"description": "Userscripts that are only useful if you study at the Saarland University.",
"devDependencies": {
"@eslint/js": "^10.0.0",
"@eslint/json": "^1.0.0",
"@eslint/markdown": "^8.0.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-userscripts": "^0.5.6",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"prettier": "3.8.1"
},
"scripts": {
"prepare": "husky",
"prettier:format": "npx prettier . --write",
"prettier:check": "npx prettier . --check",
"lint": "npx eslint .",
"lint:fix": "npx eslint --fix .",
"test": "node --test './tests/**/*.spec.js'"
},
"author": "Alexander Ikonomou",
"license": "MIT",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}