UnlyEd/serverless-env-copy-plugin

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@unly/serverless-env-copy-plugin",
  "version": "1.0.4",
  "description": "Serverless plugin to fetch environment variables and write them to a .env file",
  "main": "src/index.js",
  "author": "Unly <it@unly.org>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/UnlyEd/serverless-env-copy-plugin.git"
  },
  "bugs": {
    "url": "https://github.com/UnlyEd/serverless-env-copy-plugin/issues"
  },
  "homepage": "https://github.com/UnlyEd/serverless-env-copy-plugin",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "files": [
    "/src/index.js",
    "/src/lib/collectFunctionEnvVariables.js",
    "/src/lib/collectOfflineEnvVariables.js",
    "/src/lib/transformEnvVarsToString.js"
  ],
  "scripts": {
    "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"
  },
  "jest": {
    "setupFilesAfterEnv": [
      "jest-extended"
    ],
    "verbose": true
  },
  "dependencies": {
    "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",
    "markdown-toc": "1.2.0",
    "version-bump-prompt": "4.2.2"
  }
}