forked from newrelic/node-newrelic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
170 lines (170 loc) · 3.86 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"name": "newrelic",
"version": "3.3.0",
"author": "New Relic Node.js agent team <[email protected]>",
"licenses": [
{
"type": "proprietary",
"url": "https://raw.github.com/newrelic/node-newrelic/master/LICENSE"
}
],
"contributors": [
{
"name": "Saxon D'Aubin",
"email": "[email protected]",
"web": "http://newrelic.com"
},
{
"name": "Forrest L Norvell",
"email": "[email protected]",
"web": "http://newrelic.com/"
},
{
"name": "Jacob Groundwater",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Wraithan (Chris McDonald)",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Michael Hayes",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Bryan Clement",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Jeff Olfert",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Wilson Bilkovich",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Jonathan Merrill",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Martin Kuba",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Tim Krajcar",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Eric Wang",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Natalie Wolfe",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Seth Shober",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Peter Svetlichny",
"email": "[email protected]",
"web": "https://newrelic.com"
}
],
"description": "New Relic agent",
"keywords": [
"apm",
"performance",
"monitoring",
"instrumentation",
"debugging",
"profiling"
],
"homepage": "http://github.com/newrelic/node-newrelic",
"engines": {
"node": ">=0.10.0",
"npm": ">=2.0.0"
},
"directories": {
"lib": "lib"
},
"scripts": {
"bench": "node ./bin/run-bench.js",
"versioned-tests": "./bin/run-versioned-tests.sh",
"test": "make test"
},
"bin": {
"newrelic-naming-rules": "./bin/test-naming-rules.js"
},
"dependencies": {
"@newrelic/koa": "^1.0.0",
"async": "^2.1.4",
"concat-stream": "^1.5.0",
"https-proxy-agent": "^0.3.6",
"json-stringify-safe": "^5.0.0",
"readable-stream": "^2.1.4",
"semver": "^5.3.0"
},
"optionalDependencies": {
"@newrelic/native-metrics": "^2.1.0"
},
"devDependencies": {
"@newrelic/test-utilities": "^1.2.0",
"JSV": "~4.0.2",
"architect": "*",
"benchmark": "^2.1.4",
"bluebird": "^3.4.7",
"chai": "^1.10.0",
"connect": "*",
"cover": "*",
"ejs": "0.8.5",
"eslint": "^4.12.1",
"express": "*",
"generic-pool": "*",
"glob": "^7.1.2",
"got": "^8.0.1",
"ioredis": "*",
"jsdoc": "^3.4.0",
"lodash": "^4.17.5",
"memcached": ">=0.2.8",
"minami": "^1.1.1",
"mkdirp": "*",
"mocha": "^3.5.3",
"mongodb": "^2",
"mysql": "*",
"nock": "9.1.9",
"node-cassandra-cql": "^0.5.0",
"proxy": "^0.2.3",
"proxyquire": "^1.8.0",
"q": "*",
"redis": "^1.0.0",
"request": "2.81.0",
"restify": "^4",
"rimraf": "^2.6.2",
"sequelize": "*",
"should": "*",
"sinon": "^3.3.0",
"tap": "^10.7.3",
"temp": "^0.8.1",
"through": "^2.3.6",
"when": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/newrelic/node-newrelic.git"
}
}