mirror of
https://github.com/feathersjs/feathers.git
synced 2026-01-25 15:23:13 +00:00
90 lines
2.6 KiB
JSON
90 lines
2.6 KiB
JSON
{
|
|
"name": "feathers",
|
|
"description": "Build Better APIs, Faster than Ever.",
|
|
"version": "2.2.3",
|
|
"homepage": "http://feathersjs.com",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/feathersjs/feathers.git"
|
|
},
|
|
"keywords": [
|
|
"feathers",
|
|
"REST",
|
|
"socket.io",
|
|
"realtime"
|
|
],
|
|
"main": "lib/index",
|
|
"types": [
|
|
"./index.d.ts",
|
|
"./client.d.ts"
|
|
],
|
|
"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": {
|
|
"prepublish": "npm run compile",
|
|
"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:prerelease": "npm version prerelease && npm publish --tag pegasus",
|
|
"compile": "rimraf lib/ && babel -d lib/ src/",
|
|
"watch": "babel --watch -d lib/ src/",
|
|
"lint": "eslint-if-supported semistandard --fix",
|
|
"mocha": "mocha --opts mocha.opts",
|
|
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
|
|
"test": "npm run compile && npm run lint && npm run coverage && nsp check"
|
|
},
|
|
"semistandard": {
|
|
"env": [
|
|
"mocha"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">= 4"
|
|
},
|
|
"dependencies": {
|
|
"babel-runtime": "^6.26.0",
|
|
"debug": "^3.1.0",
|
|
"events": "^1.1.1",
|
|
"express": "^4.16.1",
|
|
"feathers-commons": "^0.8.7",
|
|
"rubberduck": "^1.1.1",
|
|
"uberproto": "^1.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "~4.0.35",
|
|
"babel-cli": "^6.18.0",
|
|
"babel-core": "^6.21.0",
|
|
"babel-plugin-add-module-exports": "^0.2.1",
|
|
"babel-plugin-transform-runtime": "^6.23.0",
|
|
"babel-preset-es2015": "^6.18.0",
|
|
"body-parser": "^1.15.2",
|
|
"eslint-if-supported": "^1.0.1",
|
|
"feathers-rest": "^1.5.3",
|
|
"feathers-socketio": "^2.0.0",
|
|
"istanbul": "^1.1.0-alpha.1",
|
|
"jshint": "^2.9.4",
|
|
"mocha": "^4.0.0",
|
|
"nsp": "^2.6.2",
|
|
"q": "^1.4.1",
|
|
"request": "^2.x",
|
|
"rimraf": "^2.5.4",
|
|
"semistandard": "^10.0.0",
|
|
"socket.io-client": "^2.0.0"
|
|
},
|
|
"browser": {
|
|
"./lib/index": "./lib/client/index"
|
|
}
|
|
}
|