-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "seneca-riak-store",
"version": "1.0.0",
"description": "Riak data store plugin for Seneca",
"main": "riak-store.js",
"author": {
"name": "Mircea Alexandru (http://www.alexandrumircea.ro)",
"email": "[email protected]"
},
"license": "MIT",
"files": [
"LICENSE.txt",
"README.md",
"riak-store.js"
],
"readmeFilename": "README.md",
"scripts": {
"test": "node_modules/.bin/lab test/*.test.js -r console -v -L -I i -m 3000 -t 80",
"annotate": "docco riak-store.js -o doc"
},
"repository": {
"type": "git",
"url": "https://github.com/mirceaalexandru/seneca-riak-store.git"
},
"keywords": [
"seneca",
"plugin",
"riak",
"store"
],
"dependencies": {
"basho-riak-client": "1.8.1",
"eraro": "0.4.1",
"lab": "7.3.0",
"lodash": "3.10.1"
},
"devDependencies": {
"seneca": "~0.7.2",
"seneca-store-test": "1.0.0",
"eslint-config-seneca": "1.x.x",
"eslint-plugin-hapi": "2.x.x",
"eslint-plugin-standard": "1.x.x"
}
}