diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/package.json b/package.json index 9aad121..a03255f 100644 --- a/package.json +++ b/package.json | |||
@@ -26,14 +26,17 @@ | |||
26 | "devDependencies": { | 26 | "devDependencies": { |
27 | "mocha": "^9.2.0", | 27 | "mocha": "^9.2.0", |
28 | "nodemon": "^2.0.15", | 28 | "nodemon": "^2.0.15", |
29 | "postcss-scss": "^4.0.3", | ||
29 | "sass": "^1.49.7", | 30 | "sass": "^1.49.7", |
30 | "sass-lint": "^1.12.1", | ||
31 | "sass-true": "^6.0.1", | 31 | "sass-true": "^6.0.1", |
32 | "sassdoc": "^2.7.3" | 32 | "sassdoc": "^2.7.3", |
33 | "stylelint": "^14.3.0", | ||
34 | "stylelint-config-sass-guidelines": "^9.0.1" | ||
33 | }, | 35 | }, |
34 | "scripts": { | 36 | "scripts": { |
35 | "prepublishOnly": "npm run test", | 37 | "prepublishOnly": "npm run test", |
36 | "lint": "sass-lint '{src,test}/**/*.scss' -q -v || true", | 38 | "lint": "stylelint \"src/**/*.scss\"", |
39 | "fix": "stylelint \"src/**/*.scss\" --fix", | ||
37 | "livelint": "nodemon --watch src --watch test -e scss -x 'echo \"BEGIN LINT\" && npm run lint && echo \"END LINT\"'", | 40 | "livelint": "nodemon --watch src --watch test -e scss -x 'echo \"BEGIN LINT\" && npm run lint && echo \"END LINT\"'", |
38 | "doc": "sassdoc src", | 41 | "doc": "sassdoc src", |
39 | "test": "mocha test/test.js" | 42 | "test": "mocha test/test.js" |