Permalink
| { | |
| "name": "feathers", | |
| "description": "Build Better APIs, Faster than Ever.", | |
| "version": "2.0.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": { | |
| "prepublish": "npm run compile", | |
| "publish": "git push origin && git push origin --tags", | |
| "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": "rm -rf lib/ && babel -d lib/ src/", | |
| "watch": "babel --watch -d lib/ src/", | |
| "jshint": "jshint src/. test/. --config", | |
| "coverage": "istanbul cover _mocha -- test/ --recursive", | |
| "mocha": "mocha test/ --compilers js:babel-core/register --recursive", | |
| "test": "npm run compile && npm run jshint && npm run mocha && nsp check" | |
| }, | |
| "engines": { | |
| "node": ">= 0.10.0", | |
| "npm": ">= 1.3.0" | |
| }, | |
| "dependencies": { | |
| "babel-polyfill": "^6.3.14", | |
| "debug": "^2.1.1", | |
| "events": "^1.1.0", | |
| "express": "^4.12.3", | |
| "feathers-commons": "^0.7.0", | |
| "rubberduck": "^1.0.0", | |
| "uberproto": "^1.2.0" | |
| }, | |
| "devDependencies": { | |
| "babel-cli": "^6.3.17", | |
| "babel-core": "^6.3.26", | |
| "babel-plugin-add-module-exports": "^0.1.2", | |
| "babel-preset-es2015": "^6.3.13", | |
| "body-parser": "^1.13.2", | |
| "feathers-rest": "^1.1.0", | |
| "feathers-socketio": "^1.1.0", | |
| "istanbul": "^0.4.0", | |
| "jshint": "^2.6.3", | |
| "mocha": "^2.2.0", | |
| "nsp": "^2.2.0", | |
| "q": "^1.0.1", | |
| "request": "^2.x", | |
| "socket.io-client": "^1.0.0" | |
| }, | |
| "browser": { | |
| "./lib/index": "./lib/client/index" | |
| } | |
| } |