35 lines
858 B
JSON
Executable File
35 lines
858 B
JSON
Executable File
{
|
|
"name": "bauke-styles",
|
|
"repository": "https://gitlab.com/Bauke/styles",
|
|
"version": "1.0.0",
|
|
"author": "Bauke <me@bauke.xyz>",
|
|
"main": "build.js",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"workspaces": [
|
|
"src/*"
|
|
],
|
|
"scripts": {
|
|
"build": "yarn lint && STYLE_ENV=prod node ./build.js",
|
|
"watch": "STYLE_ENV=dev nodemon ./build.js --watch src/ --ext sass,scss",
|
|
"lint": "xo && stylelint src/**/*.scss && stylelint src/**/*.sass"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"fs-extra": "^7.0.1",
|
|
"node-sass": "^4.11.0",
|
|
"nodemon": "^1.18.10",
|
|
"stylelint": "^9.10.1",
|
|
"stylelint-config-recommended": "^2.1.0",
|
|
"stylelint-scss": "^3.5.4",
|
|
"usercss-creator": "^1.2.0",
|
|
"xo": "^0.24.0"
|
|
},
|
|
"xo": {
|
|
"rules": {
|
|
"object-curly-spacing": ["error", "always"]
|
|
},
|
|
"space": true
|
|
}
|
|
}
|