{
  "name": "settings-config",
  "version": "1.0.1",
  "description": "A Node.js tool to load configuration depending on your environment",
  "main": "index.js",
  "author": {
    "name": "Alexey Kucherenko",
    "url": "https://github.com/killmenot"
  },
  "license": "MIT",
  "homepage": "https://github.com/killmenot/node-settings-config",
  "repository": {
    "type": "git",
    "url": "git@github.com:killmenot/node-settings-config.git"
  },
  "bugs": {
    "url": "https://github.com/killmenot/node-settings-config/issues"
  },
  "keywords": [
    "application",
    "app",
    "config",
    "configuration",
    "settings",
    "environment"
  ],
  "scripts": {
    "lint": "jshint lib test index.js",
    "test": "mocha",
    "coverage": "nyc --reporter=html --reporter=text mocha",
    "coveralls": "nyc report --reporter=text-lcov | coveralls"
  },
  "pre-commit": [
    "lint",
    "test"
  ],
  "nyc": {
    "all": true,
    "include": [
      "lib/**/*.js"
    ],
    "exclude": [
      "test/**/*.js"
    ]
  },
  "dependencies": {
    "glob": "^7.1.3",
    "settings": "^0.1.1"
  },
  "devDependencies": {
    "chai": "^4.1.2",
    "coveralls": "^3.0.2",
    "jshint": "^2.9.6",
    "mocha": "^5.2.0",
    "nyc": "^13.1.0",
    "pre-commit": "^1.2.2"
  }
}
