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",
|
2020-04-22 09:57:39 +02:00
|
|
|
"inject": "./website/_scripts/inject.sh",
|
2017-02-14 15:00:34 +01:00
|
|
|
"install:lanyon": "lanyon install",
|
2016-06-23 14:13:46 +02:00
|
|
|
"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",
|
2016-12-16 13:58:11 +01:00
|
|
|
"start:production": "npm-run-all build:production serve:production",
|
|
|
|
"start": "lanyon start",
|
2019-10-29 09:52:34 +01:00
|
|
|
"test:debug:main:repeated": "cross-env LOG_LEVEL=7 test/acceptance.sh main-repeated",
|
2019-10-29 08:41:16 +01:00
|
|
|
"test:update": "cross-env SAVE_FIXTURES=true npm run test",
|
2016-11-30 20:07:55 +01:00
|
|
|
"test": "test/acceptance.sh",
|
2016-12-20 09:23:28 +01:00
|
|
|
"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"
|
2016-11-30 14:57:40 +01:00
|
|
|
},
|
2016-12-15 12:16:31 +01:00
|
|
|
"optionalDependencies": {
|
|
|
|
"fsevents": "*"
|
|
|
|
},
|
2016-12-20 09:23:28 +01:00
|
|
|
"dependencies": {},
|
2016-02-16 18:55:05 +01:00
|
|
|
"devDependencies": {
|
2016-12-20 09:23:28 +01:00
|
|
|
"cross-env": "3.1.3",
|
|
|
|
"fakefile": "0.0.8",
|
2020-11-16 10:46:11 +01:00
|
|
|
"lanyon": "0.2.31",
|
2016-12-20 09:23:28 +01:00
|
|
|
"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
|
|
|
}
|