feathers/package.json
David Luecke 248fa3f342 Update to new plugin infrastructure (#614)
* Update to new plugin infrastructure

* Update Travis, remove Yarn lock, formatting

* Formatting

* Update feathers-commons to latest
2017-10-29 13:28:23 -07:00

66 lines
2.0 KiB
JSON

{
"name": "feathers",
"description": "Build Better APIs, Faster than Ever.",
"version": "3.0.0-pre.0",
"homepage": "http://feathersjs.com",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers.git"
},
"keywords": [
"feathers",
"REST",
"socket.io",
"realtime"
],
"main": "lib/index",
"author": "Feathers <hello@feathersjs.com> (http://feathersjs.com)",
"contributors": [
"Eric Kryski <e.kryski@gmail.com> (http://erickryski.com)",
"David Luecke <daff@neyeon.de> (http://neyeon.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/feathersjs/feathers/issues"
},
"directories": {
"lib": "lib"
},
"scripts": {
"update-version": "node -e \"console.log('module.exports = \\'' + require('./package.json').version + '\\';')\" > lib/version.js",
"version": "npm run update-version && git add lib/version.js && git commit -am \"Updating version\"",
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator --no-issues && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"release:pre": "npm version prerelease && npm publish --tag pre",
"lint": "semistandard --fix",
"mocha": "mocha --opts mocha.opts",
"mocha:watch": "mocha --opts mocha.opts --watch",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"test": "npm run lint && npm run coverage"
},
"semistandard": {
"env": [
"mocha"
]
},
"engines": {
"node": ">= 6"
},
"dependencies": {
"debug": "^3.1.0",
"events": "^1.1.1",
"feathers-commons": "^1.0.0-pre.2",
"uberproto": "^1.2.0"
},
"devDependencies": {
"istanbul": "^1.1.0-alpha.1",
"jshint": "^2.9.4",
"mocha": "^4.0.0",
"nsp": "^2.6.2",
"semistandard": "^11.0.0",
}
}