forked from scttnlsn/mubsub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1004 Bytes
/
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
{
"name": "mubsub-upd",
"version": "1.0.0",
"description": "Pub/sub for Node.js and MongoDB",
"homepage": "http://github.com/scttnlsn/mubsub",
"author": "Scott Nelson <[email protected]>",
"license": "MIT",
"main": "./lib/index",
"keywords": [
"mongodb",
"pubsub",
"pub",
"sub",
"capped collection"
],
"contributors": [
{
"name": "Oleg Slobodskoi",
"email": "[email protected]"
},
{
"name": "Wollfy Liu",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/iwolffy/mubsub.git"
},
"dependencies": {
"mongodb": "^3.1.13"
},
"devDependencies": {
"mocha": "^9.0.2"
},
"scripts": {
"test": "mocha test --timeout 10000",
"publish": "git push origin && 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"
}
}