generated from spiced-academy/fs-linting-basics-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 926 Bytes
/
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
{
"name": "web-linting-basics-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run htmlhint && npm run prettier:check && npm run eslint",
"fix": "npm run htmlhint && npm run prettier:write && npm run eslint",
"htmlhint": "npx htmlhint \"**/*.html\"",
"prettier:check": "npx prettier --check .",
"prettier:write": "npx prettier --write .",
"eslint": "npx eslint \"**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/spiced-academy/fs-linting-basics-template.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/spiced-academy/fs-linting-basics-template/issues"
},
"homepage": "https://github.com/spiced-academy/fs-linting-basics-template#readme",
"devDependencies": {
"eslint": "^8.16.0",
"htmlhint": "^1.1.4",
"prettier": "^2.6.2"
}
}