-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "adbm-rethinkdb",
"version": "1.1.1",
"description": "RethinkDB adapter for adbm database migration tool",
"main": "index.js",
"scripts": {
"docker:db": "docker start adbm_rethinkdb_dev_db || docker run --name adbm_rethinkdb_dev_db -p 28015:28015 -p 8080:8080 -d rethinkdb:2.3",
"preversion": "npm run lint && npm run test",
"lint": "standard",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daerion/adbm-rethinkdb.git"
},
"keywords": [
"rethinkdb",
"migration"
],
"author": "Michael Smesnik <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/daerion/adbm-rethinkdb/issues"
},
"homepage": "https://github.com/daerion/adbm-rethinkdb#readme",
"peerDependencies": {
"adbm": "^1.1.0",
"rethinkdbdash": "^2.3.28"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0",
"mongodb": "^2.2.26",
"rethinkdbdash": "^2.3.28",
"standard": "^10.0.2"
},
"dependencies": {
"bluebird": "^3.5.0"
}
}