-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.34 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.34 KB
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
{
"name": "rethinkdb-proxy",
"version": "0.0.8",
"description": "Reverse Proxy for RethinkDB. Make your RethinkDB publicly accessible through limiting what kind of queries can be executed on your RethinkDB database.",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"bin": {
"rethinkdb-proxy": "bin/rethinkdb-proxy.js"
},
"scripts": {
"test:es6": "export NODE_ENV='test_es6' && ./node_modules/mocha/bin/mocha --compilers js:babel/register ./test/index.js",
"test": "export NODE_ENV='test' && npm run compile && ./node_modules/mocha/bin/mocha lib-test/index.js",
"dev": "./node_modules/nodemon/bin/nodemon.js --exec babel-node -- ./src/index.js",
"start": "node index.js",
"compile": "npm run compile:src && npm run compile:test",
"compile:src": "./node_modules/babel/bin/babel.js --optional runtime -d lib src",
"compile:test": "./node_modules/babel/bin/babel.js --optional runtime -d lib-test test",
"prepublish": "npm run compile"
},
"author": "thejsj",
"license": "MIT",
"devDependencies": {
"bluebird": "^2.9.34",
"mocha": "^2.2.5",
"nodemon": "^1.3.7",
"should": "^7.0.2"
},
"dependencies": {
"babel": "^5.6.23",
"babel-runtime": "^5.8.20",
"bunyan": "^1.5.1",
"cli": "^0.8.0",
"lodash": "^3.10.0",
"rethinkdb": "^2.1.0",
"taser": "^1.0.0"
}
}