{ "name": "userstyles", "description": "A collection of all my userstyles for various websites.", "version": "0.1.1", "author": "Bauke ", "homepage": "https://bauke.xyz/userstyles", "repository": "https://git.holllo.cc/Bauke/userstyles", "license": "MIT", "main": "source/index.js", "scripts": { "start": "nodemon 'source/index.js' --watch 'source/' --ext 'scss'", "build": "USERSTYLE_ENV='production' node 'source/index.js'", "test": "xo && stylelint 'source/**/*.scss'" }, "dependencies": { "sass": "^1.26.11", "usercss-meta": "^0.9.0" }, "devDependencies": { "husky": "^4.3.0", "nodemon": "^2.0.4", "stylelint": "^13.7.2", "stylelint-config-xo-scss": "^0.13.0", "stylelint-config-xo-space": "^0.14.0", "xo": "^0.33.1" }, "stylelint": { "extends": [ "stylelint-config-xo-scss", "stylelint-config-xo-space" ], "ignoreFiles": [ "build/**/*.css" ], "rules": { "at-rule-no-unknown": null, "block-no-empty": null, "no-descending-specificity": null } }, "xo": { "prettier": true, "rules": { "no-await-in-loop": "off" }, "space": true }, "husky": { "hooks": { "pre-commit": "yarn test", "pre-push": "yarn test" } } }