-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
36 lines (36 loc) · 1019 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
{
"name": "riemann",
"version": "2.2.0",
"description": "node.js client for Riemann, supports hybrid UDP/TCP connections.",
"license": "MIT",
"types": "index.d.ts",
"author": {
"Derek Perez": "[email protected]",
"Julien Boeuf": "[email protected]"
},
"contributors": [
"Lovell Fuller <[email protected]>"
],
"main": "riemann",
"engines": {
"node": ">= 0.14"
},
"repository": {
"type": "git",
"url": "git://github.com/riemann/riemann-nodejs-client.git"
},
"dependencies": {
"event-to-promise": "^0.8.0",
"protobufjs": "7.2.5"
},
"devDependencies": {
"jshint": "*",
"mocha": "*",
"mocha-junit-reporter": "^2.2.0"
},
"scripts": {
"lint": "find . -name '*.js' -and -not -path './node_modules/*' | xargs jshint --verbose --config .jshintrc",
"test": "NODE_PATH=./ mocha --ui tdd --reporter list --timeout 2000 --slow 5000",
"testci": "NODE_PATH=./ mocha --ui tdd --reporter mocha-junit-reporter --timeout 2000 --slow 5000"
}
}