-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 857 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 857 Bytes
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
{
"name": "reql-cli",
"version": "1.0.8",
"preferGlobal": true,
"private": false,
"description": "A command line interface for rethinkdb",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Workshape/reql-cli"
},
"scripts": {
"test": "node_modules/mocha/bin/mocha --reporter spec test/unit/**/*.js",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile"
},
"bin": {
"reql-cli": "./bin/reql-cli"
},
"author": "Gordon Dent",
"license": "ISC",
"dependencies": {
"babel": "5.8.x",
"bluebird": "3.1.x",
"cli-color": "1.1.x",
"keypress": "0.2.x",
"optimist": "0.6.x",
"rethinkdb": "2.2.x"
},
"devDependencies": {
"chai": "3.3.x",
"chai-as-promised": "5.1.x",
"mocha": "2.3.x",
"sinon": "1.17.x",
"sinon-chai": "2.8.x"
}
}