-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
57 lines (57 loc) · 1.03 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
{
"name": "recli",
"version": "0.2.4",
"author": "Stian Grytøyr",
"description": "RethinkDB CLI query tool and REPL",
"main": "index.js",
"preferGlobal": true,
"dependencies": {
"coffee-script": "1.7.x",
"js-yaml": "3.0.x",
"optimist": "0.6.x",
"repl.history": "0.1.x",
"rethinkdb": "^2.3.3"
},
"devDependencies": {
"mocha": "1.12.x"
},
"bin": {
"recli": "./bin/recli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/stiang/recli.git"
},
"keywords": [
"rethinkdb",
"reql",
"database",
"cli"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/stiang/recli/issues"
},
"contributors": [
{
"name": "Stian Grytøyr",
"email": "[email protected]"
},
{
"name": "Luc Heinrich",
"email": "[email protected]"
},
{
"name": "Marshall Cottrell"
},
{
"name": "StreetStrider"
},
{
"name": "Howard Tyson"
}
],
"scripts": {
"test": "mocha -R spec ./test.js"
}
}