forked from dbader/node-datadog-metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 989 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": "datadog-metrics",
"version": "0.8.1",
"description": "Buffered metrics reporting via the DataDog HTTP API",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:dbader/node-datadog-metrics.git"
},
"bugs": {
"url": "https://github.com/dbader/node-datadog-metrics/issues"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec && ./node_modules/.bin/jshint --reporter node_modules/jshint-stylish-ex/stylish.js *.js ./lib/*.js ./test/*.js && ./node_modules/.bin/jscs --config .jscsrc *.js ./lib/*.js ./test/*.js"
},
"keywords": [
"datadog",
"metrics",
"stats"
],
"author": "Daniel Bader <[email protected]> (http://dbader.org/)",
"license": "MIT",
"devDependencies": {
"chai": "3.5.0",
"chai-string": "1.1.6",
"jscs": "2.9.0",
"jshint": "2.9.1",
"jshint-stylish-ex": "0.2.0",
"mocha": "2.4.5"
},
"dependencies": {
"debug": "3.1.0",
"dogapi": "1.1.0"
}
}