-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.8 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "mongo-live-server",
"version": "1.7.1",
"license": "MIT",
"homepage": "https://github.com/viriciti/mongo-live-server",
"scripts": {
"test": "NODE_ENV=test nyc mocha -r coffeescript/register test/**/*.coffee -r coffee-coverage/register-istanbul --exit",
"tests": "NODE_ENV=test nodemon -e coffee --exec \"mocha -r coffeescript/register test/*.coffee\"",
"compile": "coffee --output build --compile src",
"release-test": "npm install; npm run compile; npm test",
"release": "npm install; npm run compile; npm test; npm publish"
},
"description": "Live data from MongoDB or even Mongoose over a websocket with just one simple configuration.",
"keywords": [
"mongodb",
"mongoose",
"ws",
"live data",
"websocket",
"streams",
"changestreams",
"express",
"microservices"
],
"main": "./build/index.js",
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git remote add origin git@github.com:viriciti/mongo-live-server.git"
},
"nyc": {
"extension": ".coffee",
"lines": 80,
"functions": 80,
"branches": 80,
"reporter": [
"html",
"text"
],
"exclude": [
"config",
"**/index.coffee",
"test"
]
},
"optionalDependencies": {
"mongoose": "5.2.8"
},
"dependencies": {
"async": "^2.6.1",
"config": "^2.0.1",
"debug": "^3.1.0",
"dot-object": "^1.7.1",
"mongo-changestream-connector": "^1.3.1",
"qs": "^6.5.2",
"underscore": "^1.9.1",
"uuid": "^3.3.2",
"winston": "^3.1.0",
"ws": "^6.0.0"
},
"devDependencies": {
"coffee-coverage": "^3.0.0",
"coffeescope2": "^0.5.1",
"coffeescript": "^2.3.1",
"mocha": "^5.2.0",
"moment": "^2.22.2",
"mongoose": "5.2.8",
"nodemon": "^1.18.6",
"nyc": "^13.0.1"
}
}