This repository has been archived by the owner on Nov 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 KB
/
package.json
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
{
"name": "veggiekarte",
"version": "1.0.2",
"description": "A OpenStreetMap based map to easily find places, like restaurants and cafes, with vegetarian and vegan options.",
"repository": {
"type": "git",
"url": "https://github.com/piratenpanda/veggiekarte"
},
"keywords": [
"vegan",
"map"
],
"author": {
"name": "piratenpanda",
"url": "https://github.com/piratenpanda"
},
"contributors": [
"https://github.com/piratenpanda/veggiekarte/graphs/contributors"
],
"license": "GNU General Public License v3.0",
"bugs": {
"url": "https://github.com/piratenpanda/veggiekarte/issues"
},
"homepage": "https://github.com/piratenpanda/veggiekarte",
"devDependencies": {
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"stylelint": "^15.10.1",
"stylelint-config-standard": "^34.0.0",
"stylelint-prettier": "^4.0.0"
},
"scripts": {
"lint": "eslint . && stylelint **/*.css && prettier --check .",
"lint:fix": "eslint --fix . && stylelint --fix **/*.css && prettier --write .",
"test": "npm run lint",
"prepare": "husky install"
},
"type": "module",
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.css": "stylelint --fix"
}
}