-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "rethinkdb-setup",
"version": "0.3.1",
"description": "Quickly sets up RethinkDB for testing",
"main": "index.js",
"scripts": {
"test": "mocha -t 12000 -s 20000 --recursive --compilers coffee:coffee-script/register",
"test-coverage": "mocha --recursive --compilers coffee:coffee-script/register --require blanket -R html-cov > coverage.html; /usr/bin/open -a \"/Applications/Google Chrome.app\" coverage.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blakevanlan/rethinkdb-setup.git"
},
"keywords": [
"rethinkdb",
"setup",
"testing",
"mocha"
],
"author": "Blake VanLandingham",
"license": "MIT",
"bugs": {
"url": "https://github.com/blakevanlan/rethinkdb-setup/issues"
},
"homepage": "https://github.com/blakevanlan/rethinkdb-setup#readme",
"devDependencies": {
"blanket": "1.1.7",
"chai": "3.0.0",
"coffee-script": "1.9.3",
"mocha": "2.2.5"
},
"dependencies": {
"async": "1.2.1",
"insist-types": "1.0.9",
"rethinkdb": "2.3.3"
},
"config": {
"blanket": {
"pattern": "index",
"data-cover-never": [
"node_modules",
"test"
],
"loader": "./node-loaders/coffee-script"
}
}
}