forked from rethinkdb/rethinkdb-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 984 Bytes
/
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
{
"name": "rethinkdb-js",
"engines": {
"node": "14.x",
"npm": "6.x",
"yarn": ">=1.22.5"
},
"version": "2.3.31",
"description": "A Node.js driver for RethinkDB with promises and a connection pool",
"homepage": "https://github.com/Getfeedback/rethinkdb-js/#readme",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --check-leaks -t 20000",
"test:coverage": "nyc --reporter=text mocha --check-leaks -t 20000",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"browserify": "node browserify.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Getfeedback/rethinkdb-js.git"
},
"dependencies": {
"bluebird": "^3.5.1",
"luxon": "^1.2.1",
"iterall": "^1.2.2"
},
"devDependencies": {
"browserify": "^16.2.2",
"dev-null": "^0.1.1",
"mocha": "^5.2.0",
"coveralls": "^3.0.1",
"nyc": "^12.0.2",
"standard": "^11.0.1"
}
}