1
Fork 0
userstyles/package.json

43 lines
971 B
JSON
Executable File

{
"name": "bauke-styles",
"version": "1.0.0",
"author": "Bauke <me@bauke.xyz>",
"main": "build.js",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn test && STYLE_ENV=prod node .",
"watch": "STYLE_ENV=dev nodemon . --watch source/ --ext scss",
"test": "xo && stylelint 'source/**/*.scss'"
},
"dependencies": {},
"devDependencies": {
"fs-extra": "^8.1.0",
"nodemon": "^2.0.2",
"sass": "^1.22.12",
"stylelint": "^13.2.0",
"stylelint-config-xo-scss": "^0.12.0",
"stylelint-config-xo-space": "^0.14.0",
"usercss-creator": "^1.2.0",
"xo": "^0.27.2"
},
"stylelint": {
"extends": [
"stylelint-config-xo-scss",
"stylelint-config-xo-space"
],
"ignoreFiles": [
"css/**/*.css"
],
"rules": {
"at-rule-no-unknown": null,
"block-no-empty": null,
"no-descending-specificity": null
}
},
"xo": {
"prettier": true,
"space": true
}
}