1
Fork 0
userstyles/package.json

31 lines
904 B
JSON
Raw Normal View History

2018-06-14 21:36:31 +00:00
{
"name": "bauke-styles",
"repository": "https://gitlab.com/Bauke/styles",
2018-06-17 10:30:30 +00:00
"version": "3.0.1",
2018-06-14 21:36:31 +00:00
"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-17 10:23:45 +00:00
"release": "yarn lint && yarn build:prod && yarn version && yarn generate",
2018-06-14 21:36:31 +00:00
"generate": "node generate.js",
"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"
}
}