forked from Faleij/mubsub
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1015 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1015 Bytes
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
{
"name": "@bitscheme/mubsub",
"version": "1.3.2",
"description": "Pub/sub for Node.js and MongoDB",
"homepage": "http://github.com/scttnlsn/mubsub",
"author": "Scott Nelson <scott@scttnlsn.com>",
"license": "MIT",
"main": "./lib/index",
"keywords": [
"mongodb",
"pubsub",
"pub",
"sub",
"capped collection"
],
"contributors": [
{
"name": "Oleg Slobodskoi",
"email": "oleg008@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/bitscheme/mubsub.git"
},
"dependencies": {
"mongodb": "3.1.13"
},
"devDependencies": {
"mocha": "6.0.0",
"node-memwatch": "1.0.1"
},
"scripts": {
"test": "mocha test --timeout 10000",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public"
}
}