-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
35 lines (35 loc) · 894 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
{
"name": "rethinkdb-websocket-server",
"version": "0.6.0",
"description": "WebSocket server that proxies to a RethinkDB instance. Supports query validation.",
"author": "Mike Mintz",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mikemintz/rethinkdb-websocket-server.git"
},
"scripts": {
"test": "eslint test && mocha --compilers js:babel/register",
"prepublish": "eslint src && babel -d dist src"
},
"main": "dist/index.js",
"files": [
"dist"
],
"dependencies": {
"bluebird": "^2.9.27",
"colors": "^1.1.0",
"moment": "^2.10.3",
"rethinkdb": "^2.3.0",
"ws": "^1.1.5"
},
"devDependencies": {
"babel": "^5.5.6",
"babel-core": "^5.5.6",
"babel-eslint": "^4.1.7",
"eslint": "^0.22.1",
"mocha": "^2.2.5",
"reqlite": "^2.0.4",
"rethinkdb-websocket-client": "^0.4.5"
}
}