-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·52 lines (52 loc) · 1.09 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
48
49
50
51
52
{
"name": "@appoptics/statsd-appoptics-backend",
"description": "A StatsD backend for AppOptics Metrics",
"version": "1.2.1",
"license": "MIT",
"homepage": "https://github.com/appoptics/statsd-appoptics-backend",
"repository": {
"type": "git",
"url": "git://github.com/appoptics/statsd-appoptics-backend.git"
},
"author": "Mike Heffner <[email protected]>",
"contributors": [
{
"name": "Bryan Mikaelian",
"email": "[email protected]"
},
{
"name": "Michael Beale",
"email": "[email protected]"
},
{
"name": "Bruce MacNaughton",
"email": "[email protected]"
}
],
"keywords": [
"appoptics",
"metrics",
"statsd"
],
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"nock": "^9.0.13",
"nodeunit": "^0.11.0",
"pre-commit": "^1.2.2",
"sinon": "^2.1.0"
},
"main": "lib/appoptics.js",
"scripts": {
"test": "nodeunit",
"lint": "eslint lib test"
},
"pre-commit": [
"lint",
"test"
],
"bin": {
"statsd-appoptics": "./bin/statsd-appoptics"
}
}