-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "instrumental-agent",
"version": "2.3.0",
"engines": {
"node": ">=5.1"
},
"description": "Custom metric monitoring for Node applications via Instrumental",
"repository": {
"type": "git",
"url": "git://github.com/instrumental/instrumental_agent-node.git"
},
"license": "MIT",
"keywords": [
"instrumental",
"monitoring"
],
"scripts": {
"jshint": "jshint *.js test/*.js lib/*.js",
"test": "mocha test 2>&1",
"coverage": "rm -rf coverage; istanbul cover _mocha -- --recursive --reporter spec --bail"
},
"dependencies": {
"debug": "^2.6.9"
},
"devDependencies": {
"istanbul": "~0.x",
"jshint": "^2.9.5",
"mitm": "^1.3.3",
"mocha": "^5.2.0",
"should": "~11.x"
},
"bugs": {
"url": "https://github.com/instrumental/instrumental_agent-node/issues"
},
"homepage": "https://github.com/instrumental/instrumental_agent-node#readme",
"main": "index.js",
"author": "Instrumental <[email protected]> (https://instrumentalapp.com/)"
}