forked from feathersjs-ecosystem/feathers-sync
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.54 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": "feathers-sync",
"description": "Feathers",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "https://github.com/feathersjs-ecosystem/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": ">= 6"
},
"main": "lib/",
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator --no-issues && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"lint": "semistandard --fix",
"mocha": "mocha --opts mocha.opts",
"test": "npm run lint && npm run coverage",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts"
},
"semistandard": {
"env": [
"mocha"
]
},
"directories": {
"src": "src"
},
"dependencies": {
"amqplib": "^0.5.2",
"debug": "^4.0.1",
"lodash": "^4.17.10",
"mubsub": "^1.4.0",
"redis": "^2.8.0"
},
"devDependencies": {
"@feathersjs/feathers": "^3.2.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.2.0",
"semistandard": "^12.0.1"
}
}