feathers/package.json
2017-12-04 20:21:29 -08:00

66 lines
2.0 KiB
JSON

{
"name": "@feathersjs/feathers",
"description": "A REST and realtime API layer for modern applications.",
"version": "3.0.2",
"homepage": "http://feathersjs.com",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers.git"
},
"keywords": [
"feathers",
"REST",
"socket.io",
"realtime"
],
"main": "lib/index.js",
"author": {
"name": "Feathers contributor",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.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:pre": "npm version prerelease && npm publish --tag pre --access public",
"release:patch": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public",
"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": {
"@feathersjs/commons": "^1.2.0",
"debug": "^3.1.0",
"events": "^1.1.1",
"uberproto": "^1.2.0"
},
"devDependencies": {
"istanbul": "^1.1.0-alpha.1",
"jshint": "^2.9.4",
"mocha": "^4.0.0",
"nsp": "^3.0.0",
"semistandard": "^11.0.0"
}
}