yenv
Version: 
Environment management using YAML.
85 lines (84 loc) • 2.36 kB
JSON
{
  "name": "yenv",
  "version": "3.0.1",
  "description": "Environment management using YAML.",
  "main": "lib/yenv.js",
  "engines": {
    "node": ">=12.0.0"
  },
  "bin": {
    "yenv": "./bin/yenv"
  },
  "scripts": {
    "test": "mocha test/**/*.js --require test/index.js",
    "test-watch": "npm run test -- --watch",
    "lint": "esw --fix lib/ test/ && prettier --write '{lib,test}/**/*.{js,ts}'",
    "lint-watch": "npm run lint -- --watch",
    "cover": "nyc npm run test",
    "coveralls": "npm run cover && nyc report --reporter=text-lcov | coveralls",
    "publish:pre": "npm run lint && npm run cover",
    "publish:post": "npm publish && git push --follow-tags",
    "release:prerelease": "npm run publish:pre && npm version prerelease && npm run publish:post",
    "release:patch": "npm run publish:pre && npm version patch && npm run publish:post",
    "release:minor": "npm run publish:pre && npm version minor && npm run publish:post",
    "release:major": "npm run publish:pre && npm version major && npm run publish:post"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.js": [
      "esw --fix",
      "prettier --write",
      "git add"
    ]
  },
  "prettier": {
    "semi": false,
    "singleQuote": true
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jeffijoe/yenv.git"
  },
  "keywords": [
    "env",
    "environment",
    "yaml"
  ],
  "author": "Jeff Hansen <jeff@jeffijoe.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/jeffijoe/yenv/issues"
  },
  "homepage": "https://github.com/jeffijoe/yenv#readme",
  "devDependencies": {
    "chai": "^4.3.4",
    "coveralls": "^3.1.1",
    "eslint": "^8.0.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-config-standard": "^16.0.3",
    "eslint-plugin-import": "^2.25.1",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^5.1.0",
    "eslint-plugin-standard": "^5.0.0",
    "eslint-watch": "^7.0.0",
    "husky": "^4.3.8",
    "lint-staged": "^11.2.3",
    "mocha": "^9.1.2",
    "nyc": "^15.1.0",
    "prettier": "^2.4.1",
    "sinon": "^11.1.2",
    "sinon-chai": "^3.7.0"
  },
  "dependencies": {
    "coercer": "^1.1.2",
    "deep-extend": "^0.6.0",
    "js-yaml": "^4.1.0",
    "keyblade": "^0.3.2",
    "yargs": "^17.2.1"
  },
  "typings": "lib/yenv"
}