UNPKG

sync-server

Version:

A simple server which can be used to synchronize data from Dexie.Syncable and an ISyncProtocol implementation and write them into files

58 lines (57 loc) 1.75 kB
{ "name": "sync-server", "version": "2.0.0-beta.7", "bugs": { "url": "https://github.com/nponiros/sync_server/issues" }, "license": "MIT", "author": "Nikolas Poniros <nikolas@poniros.de>", "repository": { "type": "git", "url": "https://github.com/nponiros/sync_server.git" }, "dependencies": { "body-parser": "1.18.2", "cors": "2.8.4", "express": "4.16.2", "minimist": "1.2.0", "nedb": "1.8.0", "nodejs-websocket": "1.7.1", "winston": "2.3.1", "yargs": "6.6.0" }, "devDependencies": { "chakram": "1.5.0", "eslint": "3.14.0", "eslint-config-standard": "6.2.1", "eslint-plugin-promise": "3.4.0", "eslint-plugin-standard": "2.0.1", "istanbul": "0.4.5", "mocha": "3.2.0", "publish-please": "2.2.0" }, "scripts": { "test": "npm run lint && npm run test:unit && npm run test:integration", "test:integration": "mocha --reporter spec 'test/integration/**/*.spec.js'", "test:unit": "mocha --reporter spec 'test/unit/**/*.spec.js'", "test:coverage": "istanbul cover --include-all-sources _mocha 'test/**/*.spec.js'", "lint": "eslint --config .eslintrc 'lib/**/*.js' bin/main.js 'test/**/*.js'", "lint:fix": "eslint --fix --config .eslintrc 'lib/**/*.js' bin/main.js 'test/**/*.js'", "publish-please": "publish-please", "prepublish": "publish-please guard" }, "engines": { "node": ">=6.0.0" }, "preferGlobal": true, "bin": { "sync-server": "./bin/main.js" }, "description": "A simple server which can be used to synchronize data from Dexie.Syncable and an ISyncProtocol implementation and write them into files", "keywords": [ "file database", "Dexie", "Syncable", "ISyncProtocol" ] }