forked from edappy/seneca-mongo-store
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1017 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
44
{
"name": "seneca-mongo-store",
"version": "0.2.0",
"description": "Seneca data store plugin for MongoDB",
"main": "mongo-store.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/rjrodger/seneca-mongo-store"
},
"keywords": [
"seneca",
"plugin",
"store",
"mongo",
"mongodb",
"json"
],
"author": "Richard Rodger (http://richardrodger.com)",
"contributors": [
"Richard Rodger (http://richardrodger.com)",
"Peter Elger (https://github.com/pelger)",
"Cristian Ianto (https://github.com/iantocristian)",
"Mircea Alexandru (https://github.com/mirceaalexandru)"
],
"license": "MIT",
"dependencies": {
"lodash": "~2.4.1",
"mongodb": "~2.0.43"
},
"devDependencies": {
"async": "~0.9.0",
"seneca": "plugin",
"mocha": "~1.20.1",
"seneca-store-test": "~0.2.2"
},
"files": [
"LICENSE.txt",
"README.md",
"mongo-store.js"
]
}