forked from senecajs/seneca-mongo-store
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "seneca-mongo-store",
"version": "0.2.0",
"description": "Seneca data store plugin for MongoDB",
"main": "mongo-store.js",
"scripts": {
"test": "lab test/*.test.js",
"cov": "lab -s -P test -r lcov | coveralls",
"lint": "lab -dL"
},
"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": "~3.10.1",
"mongodb": "~2.1.2"
},
"devDependencies": {
"async": "~1.5.0",
"coveralls": "^2.11.6",
"eslint-config-seneca": "^1.1.2",
"eslint-plugin-hapi": "^4.0.0",
"eslint-plugin-standard": "^1.3.1",
"lab": "^6.2.0",
"seneca": "~1.0.0",
"seneca-store-test": "~0.2.2"
},
"files": [
"LICENSE.txt",
"README.md",
"mongo-store.js"
]
}