-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.36 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": "slim.js",
"version": "1.3.0",
"description": "A server that listens to Spark events, computes aggregate statistics about the Spark applications that generated them (similar to Spark's JobProgressListener), and writes those statistics to MongoDB.",
"author": "Ryan Williams <[email protected]>",
"repository": {
"type": "git",
"url": "http://github.com/hammerlab/slim.git"
},
"main": "server.js",
"dependencies": {
"async": "1.3.0",
"deep-equal": "1.0.0",
"json-stable-stringify": "^1.0.0",
"line-reader": "0.2.4",
"minimist": "1.1.1",
"mkdirp": "0.5.1",
"moment": "2.10.3",
"mongodb": "2.0.42",
"node.extend": "1.1.5",
"oboe": "2.1.2",
"priorityqueuejs": "^1.0.0",
"shelljs": "0.5.1",
"tracer": "0.7.4"
},
"devDependencies": {
"chai": "2.1.0",
"chai-subset": "1.0.1",
"mocha": "2.2.5"
},
"keywords": [
"spark",
"mongo",
"spree"
],
"engines": {
"node": ">= 0.10.0"
},
"bin": {
"slim": "slim.js"
},
"scripts": {
"pretest": "nc -z localhost 27017 > /dev/null || ( mongod --dbpath test/db --fork --logpath /dev/null && touch kill-test-mongo )",
"test": "./node_modules/mocha/bin/mocha --timeout 10000",
"posttest": "[ ! -e kill-test-mongo ] || (rm -f kill-test-mongo && mongo admin --eval 'db.shutdownServer()' > /dev/null)"
}
}