From 3c114b9d1df1f8dd68f4d3ea85b783218f653dba Mon Sep 17 00:00:00 2001 From: Kevin van Zonneveld Date: Wed, 30 Nov 2016 20:07:55 +0100 Subject: [PATCH] Fix package.json --- package.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/package.json b/package.json index 0227198..ddde636 100644 --- a/package.json +++ b/package.json @@ -3,25 +3,25 @@ "description": "Copypastable templates to write better bash scripts", "version": "2.1.0", "scripts": { + "build:production": "LANYON_ENV=production lanyon build", + "build": "lanyon build", + "deploy": "lanyon deploy", + "encrypt": "lanyon encrypt", + "inject": "./website/_scripts/inject.sh", + "injecter": "nodemon --verbose --watch ./ --ignore 'website/*.md' --ignore website/_site --ignore website/.lanyon --ext html,json,md,js,css,png,jpg --exec 'npm run inject'", "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", + "serve:production": "LANYON_ENV=production lanyon serve", + "start:production": "npm-run-all inject build:production serve:production", + "start": "npm-run-all --parallel injecter starter", + "starter": "lanyon start", "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", - "build:production": "LANYON_ENV=production lanyon build", - "serve:production": "LANYON_ENV=production lanyon serve", - "build": "lanyon build", - "encrypt": "lanyon encrypt", - "deploy": "lanyon deploy", - "inject": "./website/_scripts/inject.sh", - "injecter": "nodemon --verbose --watch ./ --ignore 'website/*.md' --ignore website/_site --ignore website/.lanyon --ext html,json,md,js,css,png,jpg --exec 'npm run inject'", - "start:production": "npm-run-all inject build:production serve:production", - "starter": "lanyon start", - "start": "npm-run-all --parallel injecter starter" + "version:replace": "replace 'v\\d+\\.\\d+\\.\\d+' \"v$(npm run --silent version:current)\" main.sh src/*.sh" }, "lanyon": { "projectDir": "website", @@ -30,7 +30,7 @@ ] }, "dependencies": { - "fakefile": "0.0.6", + "fakefile": "0.0.6" }, "devDependencies": { "lanyon": "0.0.13",