-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.02 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
{
"name": "@hugomods/____",
"repository": {
"type": "git",
"url": "git+https://github.com/hugomods/____.git"
},
"author": "Razon Yang <razonyang@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hugomods/____/issues"
},
"homepage": "https://github.com/hugomods/____",
"devDependencies": {
"@hugomods/prettier-config": "^0.1.0",
"@tsconfig/recommended": "^1.0.2",
"stylelint": "^16.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-scss": "^6.0.0",
"ts-standard": "^12.0.2"
},
"scripts": {
"lint": "npm run lint:prettier && npm run lint:style && npm run lint:standard",
"lint:prettier": "prettier **/*.html i18n/* data/* **/*.md --check",
"lint:prettier:fix": "prettier **/*.html i18n/* data/* **/*.md -w",
"lint:standard": "ts-standard .",
"lint:standard:fix": "ts-standard --fix .",
"lint:style": "stylelint \"**/*.scss\"",
"lint:style:fix": "stylelint \"**/*.scss\" --fix"
},
"prettier": "@hugomods/prettier-config"
}