-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 726 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 726 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
{
"name": "rethinkdb-init",
"version": "0.2.2",
"description": "Create all RethinkDB databases, tables and indexes automatically through a schema object",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --bail -t 5000 --slow 0 ./test"
},
"keywords": [
"rethinkdb",
"database",
"bootstrap",
"init"
],
"author": "thejsj",
"license": "MIT",
"dependencies": {
"lodash": "^3.7.0",
"q": "^1.2.1"
},
"devDependencies": {
"mocha": "^2.2.4",
"rethinkdb": "^2.0.0",
"rethinkdbdash": "^2.2.17",
"should": "^6.0.1",
"standard": "^7.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/thejsj/rethinkdb-init"
}
}