-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 969 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
{
"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/eslint-config": "^0.1.0",
"@hugomods/prettier-config": "^0.2.0",
"@hugomods/stylelint-config": "^0.1.1"
},
"scripts": {
"lint": "npm run lint:prettier && npm run lint:style && npm run lint:eslint",
"lint:fix": "npm run lint:prettier:fix && npm run lint:style:fix && npm run lint:eslint:fix",
"lint:prettier": "prettier . --check",
"lint:prettier:fix": "prettier . -w",
"lint:eslint": "eslint .",
"lint:eslint:fix": "eslint --fix .",
"lint:style": "stylelint \"**/*.scss\"",
"lint:style:fix": "stylelint \"**/*.scss\" --fix"
},
"prettier": "@hugomods/prettier-config"
}