-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "moleculer-db-adapter-rethinkdb",
"version": "0.2.10",
"description": "Moleculer service to support rethinkdb",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "jest --coverage",
"ci": "jest --watch",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"engines": {
"node": ">= 6.x.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cantecim/moleculer-db-adapter-rethinkdb.git"
},
"keywords": [
"microservice",
"moleculer",
"rethinkdb"
],
"author": "Can Tecim <can.tecim@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cantecim/moleculer-db-rethinkdb/issues"
},
"homepage": "https://github.com/cantecim/moleculer-db-rethinkdb#readme",
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.12.1",
"jest": "^23.6.0",
"moleculer": "^0.13.5",
"moleculer-db": "^0.7.7"
},
"dependencies": {
"bluebird": "^3.5.3",
"lodash": "^4.17.11",
"rethinkdb": "^2.3.3"
},
"jest": {
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"rootDir": "./src",
"roots": [
"../test"
]
}
}