bash3boilerplate/package.json
2016-11-30 16:22:25 +01:00

42 lines
1.8 KiB
JSON

{
"name": "bash3boilerplate",
"description": "Copypastable templates to write better bash scripts",
"version": "2.1.0",
"scripts": {
"deploy": "website/_scripts/deploy.sh",
"lint": "shellcheck --shell=bash $(find . -name '*.sh' -maxdepth 2)",
"release:major": "env SEMANTIC=major npm run release",
"release:minor": "env SEMANTIC=minor npm run release",
"release:patch": "env SEMANTIC=patch npm run release",
"release": "npm version ${SEMANTIC:-patch} -m \"Release %s\" && npm run version:replace && git commit main.sh src/*.sh -m 'Update version' && git push && git push --tags && npm publish",
"save:fixtures": "cross-env SAVE_FIXTURES=true npm run test",
"test": "test/acceptance.sh",
"version:current": "node -e 'console.log(require(\"./package.json\").version)'",
"version:replace": "replace 'v\\d+\\.\\d+\\.\\d+' \"v$(npm run --silent version:current)\" main.sh src/*.sh",
"web:build:production": "LANYON_ENV=production lanyon build",
"web:serve:production": "LANYON_ENV=production lanyon serve",
"web:build": "lanyon build",
"web:inject": "./website/_scripts/inject.sh",
"web:injecter": "nodemon --verbose --watch ./ --ignore 'website/*.md' --ignore website/_site --ignore website/.lanyon --ext html,json,md,js,css,png,jpg --exec 'npm run web:inject'",
"web:start:production": "npm-run-all web:inject web:build:production web:serve:production",
"web:starter": "lanyon start",
"web:start": "npm-run-all --parallel web:injecter web:starter"
},
"lanyon": {
"projectDir": "website",
"entries": [
"app"
]
},
"dependencies": {
"fakefile": "0.0.6",
"lanyon": "0.0.13"
},
"devDependencies": {
"browser-sync": "2.11.0",
"cross-env": "1.0.7",
"nodemon": "1.8.1",
"npm-run-all": "2.1.1"
}
}