-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.71 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"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"
]
}