1
Fork 0
userstyles/package.json

54 lines
1.3 KiB
JSON
Executable File

{
"name": "userstyles",
"description": "A collection of all my userstyles for various websites.",
"version": "0.1.0",
"author": "Bauke <me@bauke.xyz>",
"homepage": "https://bauke.xyz/userstyles",
"repository": "https://git.holllo.cc/Bauke/userstyles",
"license": "MIT",
"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.10",
"usercss-meta": "^0.9.0"
},
"devDependencies": {
"husky": "^4.2.5",
"nodemon": "^2.0.4",
"stylelint": "^13.6.1",
"stylelint-config-xo-scss": "^0.13.0",
"stylelint-config-xo-space": "^0.14.0",
"xo": "^0.32.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"
}
}
}