forked from godotengine/godot-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "godot-website",
"version": "1.0.0",
"description": "Godot website",
"private": true,
"scripts": {
"lint": "stylelint \"themes/godotengine/assets/css/main.css\" \"themes/godotengine/**/*.htm\" && prettier --check .",
"format": "stylelint --fix \"themes/godotengine/assets/css/main.css\" \"themes/godotengine/**/*.htm\" && prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/godotengine/godot-website.git"
},
"author": "Godot Engine",
"license": "MIT",
"bugs": {
"url": "https://github.com/godotengine/godot-website/issues"
},
"homepage": "https://github.com/godotengine/godot-website#readme",
"devDependencies": {
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "2.2.1",
"stylelint": "^13.8.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^3.0.0"
},
"stylelint": {
"extends": [
"stylelint-config-recommended",
"stylelint-config-prettier"
],
"rules": {
"no-descending-specificity": null
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}