UNPKG

feathers-offline-realtime

Version:

Offline-first realtime replication with optimistic updates.

79 lines (78 loc) 2.38 kB
{ "name": "feathers-offline-realtime", "description": "Offline-first realtime replication with optimistic updates.", "version": "0.1.2", "homepage": "https://github.com/feathersjs/feathers-offline-realtime", "main": "lib/", "keywords": [ "feathers", "feathers-plugin" ], "license": "MIT", "repository": { "type": "git", "url": "git://github.com/feathersjs/feathers-offline-realtime.git" }, "author": { "name": "Feathers contributors", "email": "hello@feathersjs.com", "url": "https://feathersjs.com" }, "contributors": [], "bugs": { "url": "https://github.com/feathersjs/feathers-offline-realtime/issues" }, "engines": { "node": ">= 4.6.0" }, "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": "shx rm -rf lib/ && babel -d lib/ src/", "watch": "babel --watch -d lib/ src/", "lint": "semistandard src/**/*.js test/**/*.js --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", "start": "npm run compile && node example/app" }, "semistandard": { "sourceType": "module", "env": [ "mocha" ] }, "directories": { "lib": "lib" }, "dependencies": { "component-emitter": "1.2.1", "debug": "^2.6.8", "feathers-commons": "0.8.7", "feathers-errors": "2.8.1", "feathers-offline-snapshot": "^0.0.1", "feathers-query-filters": "2.1.2", "md5": "2.2.1", "shortid": "2.2.8", "uberproto": "1.2.0", "uuid": "3.1.0" }, "devDependencies": { "babel-cli": "^6.24.1", "babel-core": "^6.24.1", "babel-plugin-add-module-exports": "^0.2.1", "babel-preset-es2015": "^6.24.1", "chai": "^4.0.0", "feathers": "^2.1.3", "feathers-hooks": "^2.0.1", "feathers-memory": "^1.1.0", "istanbul": "^1.1.0-alpha.1", "mocha": "^3.4.2", "semistandard": "^11.0.0", "shx": "^0.2.2" } }