-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "rethinkdb",
"version": "2.4.2",
"main": "rethinkdb",
"license": "Apache-2.0",
"description": "This package provides the JavaScript driver library for the RethinkDB database server for use in your node application.",
"scripts": {
"get-proto": "./scripts/prepare.sh",
"compile": "./scripts/compile.sh",
"build": "npm run get-proto && npm run compile"
},
"keywords": [
"database",
"NoSQL",
"reql",
"query language"
],
"homepage": "https://rethinkdb.com",
"bugs": {
"url": "https://github.com/rethinkdb/rethinkdb/issues",
"email": "[email protected]"
},
"files": [
"rethinkdb.js",
"ast.js",
"net.js",
"util.js",
"errors.js",
"cursor.js",
"README.md",
"proto-def.js"
],
"repository": {
"type": "git",
"url": "https://github.com/rethinkdb/rethinkdb.git"
},
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"bluebird": "2.9.32"
},
"devDependencies": {
"coffeescript": "1.10.0"
}
}