Skip to content

Commit

Permalink
release v1.0.1-beta.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadorequest committed Aug 29, 2019
1 parent 874e4b1 commit b8daa60
Showing 1 changed file with 23 additions and 5 deletions.
28 changes: 23 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
{
"name": "@unly/serverless-env-copy-plugin",
"version": "1.0.1-beta.0",
"description": "serverless plugin to fetch environment variables and write it to a .env file",
"main": "src/index.js",
"author": "Henrik Fricke <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest test",
"test:coverage": "jest test --coverage"
"lint": "esw src/ --fix --watch",
"lint:once": "eslint src/ --fix",
"preversion": "yarn lint:once && yarn test:once && yarn doc:toc",
"postversion": "git push && git push --tags",
"prepublishOnly": "yarn publish:preview && cli-confirm \"Do you really want to release a new version? Please check the files that will be publicly released first. (y/n)\"",
"publish:preview": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"release": "yarn bump --prompt --commit --tag --push",
"releaseAndPublish": "yarn release && npm publish",
"doc:toc": "yarn markdown-toc --maxdepth 4 -i README.md",
"test": "NODE_ENV=test jest --watch",
"test:once": "NODE_ENV=test jest",
"test:coverage": "NODE_ENV=test jest --coverage"
},
"repository": {
"type": "git",
Expand All @@ -24,10 +35,17 @@
},
"dependencies": {
"coveralls": "^2.12.0",
"mkdirp": "^0.5.1"
"mkdirp": "0.5.1"
},
"devDependencies": {
"@unly/cli-confirm": "1.1.1",
"eslint": "6.2.2",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-watch": "4.0.2",
"jest": "24.9.0",
"jest-extended": "0.11.2"
"jest-extended": "0.11.2",
"markdown-toc": "1.2.0",
"version-bump-prompt": "4.2.2"
}
}
}

0 comments on commit b8daa60

Please sign in to comment.