2018-06-14 21:36:31 +00:00
|
|
|
{
|
|
|
|
"name": "bauke-styles",
|
|
|
|
"repository": "https://gitlab.com/Bauke/styles",
|
|
|
|
"author": {
|
|
|
|
"name": "Bauke",
|
|
|
|
"email": "me@bauke.xyz"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
2018-06-15 12:41:58 +00:00
|
|
|
"watch": "node-sass -w sass -o temp",
|
2018-06-14 21:36:31 +00:00
|
|
|
"release": "yarn lint && yarn build:prod && yarn generate",
|
|
|
|
"generate": "node generate.js",
|
2018-06-15 18:31:51 +00:00
|
|
|
"build:dev": "node-sass sass -o temp --output-style compact",
|
|
|
|
"build:prod": "node-sass sass -o css -q --output-style compact",
|
2018-06-14 21:36:31 +00:00
|
|
|
"lint": "yarn lint:js && yarn lint:css",
|
|
|
|
"lint:js": "eslint . --color",
|
2018-06-15 12:41:58 +00:00
|
|
|
"lint:css": "stylelint \"sass/**/*.sass\" --color"
|
2018-06-14 21:36:31 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"klaw-sync": "^4.0.0",
|
|
|
|
"node-sass": "^4.9.0",
|
2018-06-15 22:15:32 +00:00
|
|
|
"usercss-creator": "^1.0.7"
|
2018-06-14 21:36:31 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"eslint": "^4.19.1",
|
|
|
|
"stylelint": "^9.2.1",
|
|
|
|
"stylelint-config-recommended": "^2.1.0"
|
|
|
|
}
|
|
|
|
}
|