-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
65 lines (65 loc) · 1.4 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
{
"name": "moonridge",
"version": "1.0.1",
"main": "moonridge.js",
"author": "Capaj <[email protected]>",
"description": "Isomorphic library, which allows you to use Mongoose.js models via socket.io-rpc doing regular queries and liveQueries",
"scripts": {
"test": "mocha",
"precommit": "npm run pretest",
"pretest": "node_modules/.bin/standard",
"smoke": "node test/e2e-smoketest/server.js"
},
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"socket.io",
"rpc",
"model",
"liveQuery",
"realtime",
"mongo",
"mongoDB",
"isomorphic",
"universal",
"mean",
"meteor",
"angular",
"aurelia",
"orm",
"mongoose",
"mongoosejs"
],
"repository": {
"type": "git",
"url": "https://github.com/capaj/Moonridge.git"
},
"homepage": "http://capaj.github.io/Moonridge/",
"dependencies": {
"baucis": "^1.6.5",
"baucis-swagger": "^1.1.2",
"debug": "^2.2.0",
"lodash": "^3.10",
"mongoose": "^4.4.4",
"mongoose-schema-serializer": "^1.0.1",
"socket.io-rpc": "^1.1.3"
},
"devDependencies": {
"chai": "^3.4.1",
"husky": "^0.10.2",
"mocha": "^2.5.3",
"mongojs": "^2.4.0",
"morgan": "^1.7.0",
"socket.io-rpc-client": "^1.1.3",
"standard": "^5.4.1",
"express": "^4.13"
},
"standard": {
"ignore": [
"Moonridge-client/**",
"test/**"
]
},
"license": "MIT"
}