forked from feathersjs-ecosystem/feathers-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "feathers-sync",
"description": "Feathers",
"version": "0.1.1",
"repository": {
"type": "git",
"url": "https://github.com/feathersjs/feathers-sync.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/feathersjs/feathers-mubsub/issues"
},
"homepage": "https://github.com/feathersjs/feathers-mubsub",
"keywords": [
"feathers",
"feathers-plugin",
"cluster"
],
"author": "Feathers contributors (https://feathersjs.com)",
"contributors": [],
"engines": {
"node": ">=0.10.0"
},
"main": "src/sync.js",
"scripts": {
"publish": "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",
"jshint": "jshint src/. test/. --config",
"mocha": "mocha test/",
"test": "npm run jshint && npm run mocha"
},
"directories": {
"src": "src"
},
"dependencies": {
"debug": "^2.1.3",
"mubsub": "^1.0.4",
"redis": "^2.4.2"
},
"devDependencies": {
"feathers": "^2.0.0",
"jshint": "^2.6.3",
"mocha": "^2.1.0"
}
}