bash3boilerplate/package.json

40 lines
1.7 KiB
JSON
Raw Normal View History

2014-11-04 12:59:22 +01:00
{
2014-11-04 13:00:30 +01:00
"name": "bash3boilerplate",
2014-11-04 14:55:37 +01:00
"description": "Copypastable templates to write better bash scripts",
2019-11-07 14:23:57 +01:00
"version": "2.4.1",
2016-02-16 15:01:26 +01:00
"scripts": {
2016-12-03 14:02:25 +01:00
"build:production": "LANYON_ENV=production lanyon build",
2016-11-30 20:07:55 +01:00
"build": "lanyon build",
"deploy": "lanyon deploy",
"encrypt": "lanyon encrypt",
"inject": "./website/_scripts/inject.sh",
"install:lanyon": "lanyon install",
"lint": "shellcheck --shell=bash $(find . -name '*.sh' -maxdepth 2)",
2016-02-16 15:01:26 +01:00
"release:major": "env SEMANTIC=major npm run release",
"release:minor": "env SEMANTIC=minor npm run release",
"release:patch": "env SEMANTIC=patch npm run release",
2016-02-17 13:43:00 +01:00
"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",
2016-11-30 19:59:21 +01:00
"serve:production": "LANYON_ENV=production lanyon serve",
"start:production": "npm-run-all build:production serve:production",
"start": "lanyon start",
"test:debug:main:repeated": "cross-env LOG_LEVEL=7 test/acceptance.sh main-repeated",
"test:update": "cross-env SAVE_FIXTURES=true npm run test",
2016-11-30 20:07:55 +01:00
"test": "test/acceptance.sh",
"upgrade:modules": "next-update --keep true --tldr",
2016-11-30 20:07:55 +01:00
"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"
},
"optionalDependencies": {
"fsevents": "*"
},
"dependencies": {},
2016-02-16 18:55:05 +01:00
"devDependencies": {
"cross-env": "3.1.3",
"fakefile": "0.0.8",
2020-11-16 10:46:11 +01:00
"lanyon": "0.2.31",
"next-update": "1.5.1",
2016-12-21 09:52:11 +01:00
"npm-run-all": "3.1.2",
2019-10-29 09:14:02 +01:00
"replace": "0.3.0"
2016-02-16 15:01:26 +01:00
}
2014-11-04 12:59:22 +01:00
}