38 lines
920 B
JSON
38 lines
920 B
JSON
{
|
|
"name": "bauke.xyz",
|
|
"description": "My personal website.",
|
|
"version": "0.1.1",
|
|
"author": "Bauke <me@bauke.xyz>",
|
|
"homepage": "https://bauke.xyz",
|
|
"repository": "https://git.holllo.cc/Bauke/bauke.xyz",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "cpy '**' '../public/' --cwd='source' --parents && yarn build:css",
|
|
"build:css": "cpy 'node_modules/modern-normalize/modern-normalize.css' 'public/css/'",
|
|
"test": "stylelint 'source/css/*.css'"
|
|
},
|
|
"dependencies": {
|
|
"modern-normalize": "^0.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"cpy-cli": "^3.1.1",
|
|
"husky": "^4.2.5",
|
|
"stylelint": "^13.6.1",
|
|
"stylelint-config-xo-space": "^0.14.0"
|
|
},
|
|
"stylelint": {
|
|
"extends": [
|
|
"stylelint-config-xo-space"
|
|
],
|
|
"rules": {
|
|
"no-descending-specificity": null
|
|
}
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "yarn test",
|
|
"pre-push": "yarn test"
|
|
}
|
|
}
|
|
}
|