-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1000 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
31
32
{
"name": "@hugomods/stylelint-config",
"version": "0.1.1",
"repository": {
"type": "git",
"url": "git+https://github.com/hugomods/stylelint-config.git"
},
"author": "Razon Yang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hugomods/stylelint-config/issues"
},
"homepage": "https://github.com/hugomods/stylelint-config",
"dependencies": {
"stylelint": "^16.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-scss": "^6.0.0"
},
"main": "index.js",
"scripts": {
"lint": "npm run lint:style && npm run lint:prettier",
"lint:fix": "npm run lint:style:fix && npm run lint:prettier:fix",
"lint:prettier": "npx prettier . --check",
"lint:prettier:fix": "npx prettier . --write",
"lint:style": "stylelint \"**/*.scss\"",
"lint:style:fix": "stylelint \"**/*.scss\" --fix"
},
"devDependencies": {
"@hugomods/prettier-config": "^0.1.3"
},
"prettier": "@hugomods/prettier-config"
}