forked from Jimdo/serverless-dotenv
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
874e4b1
commit b8daa60
Showing
1 changed file
with
23 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
@@ -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" | ||
} | ||
} | ||
} |