feathers-configuration
Version:
A small configuration module for your Feathers application.
71 lines (70 loc) • 2.13 kB
JSON
{
"name": "feathers-configuration",
"description": "A small configuration module for your Feathers application.",
"version": "0.4.2",
"homepage": "https://github.com/feathersjs/feathers-configuration",
"main": "lib/",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers-configuration.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/feathers-configuration/issues"
},
"engines": {
"node": ">= 4"
},
"scripts": {
"prepublish": "npm run compile",
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"compile": "rimraf lib/ && babel -d lib/ src/",
"watch": "babel --watch -d lib/ src/",
"lint": "eslint-if-supported semistandard --fix",
"mocha": "NODE_CONFIG_DIR=./test/config/ NODE_ENV=testing mocha --opts mocha.opts",
"test": "npm run lint && npm run coverage && nsp check",
"coverage": "NODE_CONFIG_DIR=./test/config/ NODE_ENV=testing istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts"
},
"semistandard": {
"env": [
"mocha"
],
"ignore": [
"/lib"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"debug": "^3.0.1",
"config": "^1.21.0"
},
"devDependencies": {
"babel-cli": "^6.1.4",
"babel-core": "^6.1.4",
"babel-plugin-transform-object-assign": "^6.1.18",
"babel-preset-es2015": "^6.1.4",
"eslint-if-supported": "^1.0.1",
"feathers": "^2.0.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^4.0.0",
"nsp": "^2.2.0",
"rimraf": "^2.5.4",
"semistandard": "^11.0.0"
}
}