forked from scttnlsn/mubsub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 927 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
{
"name": "mubsub",
"version": "1.4.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]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/scttnlsn/mubsub.git"
},
"dependencies": {
"mongodb": "^2.0.35"
},
"devDependencies": {
"mocha": "^2.2.5"
},
"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"
}
}