forked from xxidbr9/binar-intro-to-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "binar-intro-to-html",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"lint": "npm run lint:html && npm run lint:css",
"lint:staged": "lint-staged",
"lint:css": "stylelint **/*.css --fix",
"lint:html": "htmlhint **/*.html",
"format:css": "prettier --write **/*.css",
"format:html": "prettier --write **/*.html"
},
"lint-staged": {
"*.css": [
"npm run lint:css",
"npm run format:css",
"git add"
],
"*.html": [
"npm run lint:html",
"npm run format:html",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/xxidbr9/binar-intro-to-html.git"
},
"author": "Barnando Akbarto Hidayatullah",
"license": "MIT",
"bugs": {
"url": "https://github.com/xxidbr9/binar-intro-to-html/issues"
},
"homepage": "https://github.com/xxidbr9/binar-intro-to-html#readme",
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"htmlhint": "^1.1.4",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"stylelint": "^15.9.0",
"stylelint-config-standard": "^33.0.0"
}
}