UNPKG

serverless-dotenv-plugin

Version:

Preload environment variables with dotenv into serverless.

52 lines (51 loc) 1.4 kB
{ "name": "serverless-dotenv-plugin", "version": "6.0.0", "description": "Preload environment variables with dotenv into serverless.", "main": "src/index.js", "files": [ "src/**/*" ], "scripts": { "deploy": "publish", "prettier": "prettier --ignore-path .gitignore --write \"**/*.js\"", "test": "nyc --reporter=lcov --reporter=text mocha", "posttest": "prettier --ignore-path .gitignore --check \"**/*.js\"" }, "repository": { "type": "git", "url": "git+https://github.com/neverendingqs/serverless-dotenv-plugin.git" }, "keywords": [ "serverless", "dotenv", "serverless-plugin" ], "author": "Colyn Brown <colyn.brown@gmail.com>", "contributors": [ "Mark Tse <mark.tse@neverendingqs.com> (https://neverendingqs.com/)" ], "license": "MIT", "bugs": { "url": "https://github.com/neverendingqs/serverless-dotenv-plugin/issues" }, "homepage": "https://github.com/neverendingqs/serverless-dotenv-plugin#readme", "dependencies": { "chalk": "^4.1.2", "dotenv": "^16.0.3", "dotenv-expand": "^10.0.0" }, "devDependencies": { "chai": "^4.3.7", "mocha": "^9.2.2", "nyc": "^15.1.0", "prettier": "^2.8.4", "proxyquire": "^2.1.3", "publish-me-maybe": "^1.0.12", "sinon": "^15.0.2", "sinon-chai": "^3.7.0" }, "peerDependencies": { "serverless": "1 || 2 || pre-3 || 3" } }