generated from nikoescobal/linters-config
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 927 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": "linters-config",
"version": "1.0.0",
"description": "default linter set-up configuration",
"main": "index.js",
"scripts": {
"test": "npm run webhint && npm run stylelint && echo \"✅✅✅ All tests passed ✅✅✅\"",
"webhint": "hint .",
"stylelint": "npx stylelint **/*.scss",
"sass": "node-sass scss/style.scss css/style.css -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikoescobal/linters-config.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nikoescobal/linters-config/issues"
},
"homepage": "https://github.com/nikoescobal/linters-config#readme",
"devDependencies": {
"hint": "^6.0.7",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-csstree-validator": "^1.8.0",
"stylelint-scss": "^3.17.2"
},
"dependencies": {
"node-sass": "^4.14.1"
}
}