forked from newrelic/node-newrelic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
259 lines (259 loc) · 8.5 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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
{
"name": "newrelic",
"version": "9.7.5",
"author": "New Relic Node.js agent team <[email protected]>",
"license": "Apache-2.0",
"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"
},
{
"name": "Michael Goin",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Alan Storm",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Carlo Pearson",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Nick Tzaperas",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Bob Evans",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Diana Thayer",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Jordi Gutiérrez Hermoso",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Maurice Rickard",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Jessica Lopatta",
"email": "[email protected]",
"web": "https://newrelic.com"
}
],
"description": "New Relic agent",
"keywords": [
"apm",
"performance",
"monitoring",
"instrumentation",
"debugging",
"profiling"
],
"homepage": "https://github.com/newrelic/node-newrelic",
"engines": {
"node": ">=14",
"npm": ">=6.0.0"
},
"directories": {
"lib": "lib"
},
"scripts": {
"bench": "node ./bin/run-bench.js",
"docker-env": "./bin/docker-env-vars.sh",
"docs": "npm ci && jsdoc -c ./jsdoc-conf.json --private -r .",
"integration": "npm run prepare-test && npm run sub-install && time c8 -o ./coverage/integration tap --test-regex='(\\/|^test\\/integration\\/.*\\.tap\\.js)$' --timeout=180 --no-coverage --reporter classic",
"integration:async-local": "npm run prepare-test && npm run sub-install && time c8 -o ./coverage/integration-async-local tap --test-regex='(\\/|^test\\/integration\\/.*\\.tap\\.js)$' --timeout=360 --no-coverage --reporter classic --test-env=NEW_RELIC_FEATURE_FLAG_ASYNC_LOCAL_CONTEXT=1",
"prepare-test": "npm run ssl && npm run docker-env",
"lint": "eslint ./*.{js,mjs} lib test bin examples",
"lint:fix": "eslint --fix, ./*.{js,mjs} lib test bin examples",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --allowed-hosts npm --validate-https --validate-integrity",
"public-docs": "jsdoc -c ./jsdoc-conf.json --tutorials examples/shim api.js lib/shim/ lib/transaction/handle.js && cp examples/shim/*.png out/",
"publish-docs": "./bin/publish-docs.sh",
"services": "./bin/docker-services.sh",
"smoke": "npm run ssl && time tap test/smoke/**/**/*.tap.js --timeout=180 --no-coverage",
"ssl": "./bin/ssl.sh",
"sub-install": "node test/bin/install_sub_deps",
"test": "npm run integration && npm run unit && npm run unit:esm",
"third-party-updates": "oss third-party manifest --includeOptDeps && oss third-party notices --includeOptDeps && git add THIRD_PARTY_NOTICES.md third_party_manifest.json",
"unit": "rm -f newrelic_agent.log && time c8 -o ./coverage/unit tap --test-regex='(\\/|^test\\/unit\\/.*\\.test\\.js)$' --timeout=180 --no-coverage --reporter classic",
"unit:async-local": "rm -f newrelic_agent.log && time tap --test-regex='(\\/|^test\\/unit\\/.*\\.test\\.js)$' --timeout=180 --no-coverage --reporter classic --test-env=NEW_RELIC_FEATURE_FLAG_ASYNC_LOCAL_CONTEXT=1",
"unit:esm": "rm -f newrelic_agent.log && time c8 -o ./coverage/esm-unit --include *.mjs --include **/*.mjs --exclude false tap --test-regex='(\\/|^test\\/unit\\/.*\\.test\\.mjs)$' --timeout=180 --no-coverage --reporter classic --node-arg=--experimental-loader=testdouble",
"update-cross-agent-tests": "./bin/update-cats.sh",
"versioned-tests": "./bin/run-versioned-tests.sh",
"update-changelog-version": "node ./bin/update-changelog-version",
"checkout-external-versioned": "node ./test/versioned-external/checkout-external-tests.js",
"versioned": "npm run versioned:npm7",
"versioned:major": "VERSIONED_MODE=--major npm run versioned:npm7",
"versioned:npm6": "npm run checkout-external-versioned && npm run prepare-test && time ./bin/run-versioned-tests.sh",
"versioned:npm7": "npm run checkout-external-versioned && npm run prepare-test && NPM7=1 time ./bin/run-versioned-tests.sh",
"versioned:async-local": "NEW_RELIC_FEATURE_FLAG_ASYNC_LOCAL_CONTEXT=1 npm run versioned:npm7",
"versioned:async-local:major": "NEW_RELIC_FEATURE_FLAG_ASYNC_LOCAL_CONTEXT=1 npm run versioned:major",
"prepare": "husky install"
},
"bin": {
"newrelic-naming-rules": "./bin/test-naming-rules.js"
},
"dependencies": {
"@grpc/grpc-js": "^1.7.3",
"@grpc/proto-loader": "^0.7.3",
"@newrelic/aws-sdk": "^5.0.0",
"@newrelic/koa": "^7.0.0",
"@newrelic/superagent": "^6.0.0",
"@tyriar/fibonacci-heap": "^2.0.7",
"concat-stream": "^2.0.0",
"https-proxy-agent": "^5.0.0",
"json-stringify-safe": "^5.0.0",
"readable-stream": "^3.6.0",
"semver": "^5.3.0",
"winston-transport": "^4.5.0"
},
"optionalDependencies": {
"@contrast/fn-inspect": "^3.3.0",
"@newrelic/native-metrics": "^9.0.0"
},
"devDependencies": {
"@newrelic/eslint-config": "^0.2.0",
"@newrelic/newrelic-oss-cli": "^0.1.2",
"@newrelic/proxy": "^2.0.0",
"@newrelic/test-utilities": "^7.2.0",
"@octokit/rest": "^18.0.15",
"@slack/bolt": "^3.7.0",
"ajv": "^6.12.6",
"async": "^3.2.4",
"c8": "^7.12.0",
"chai": "^4.1.2",
"commander": "^7.0.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-disable": "^2.0.1",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-sonarjs": "^0.15.0",
"express": "*",
"glob": "^7.1.2",
"got": "^11.8.5",
"husky": "^6.0.0",
"jsdoc": "^3.6.3",
"lint-staged": "^11.0.0",
"lockfile-lint": "^4.9.6",
"memcached": ">=0.2.8",
"minami": "^1.2.3",
"nock": "11.8.0",
"prettier": "^2.3.2",
"proxyquire": "^1.8.0",
"q": "*",
"request": "^2.88.2",
"rimraf": "^2.6.3",
"should": "*",
"sinon": "^4.5.0",
"tap": "^16.0.1",
"temp": "^0.8.1",
"testdouble": "^3.16.6",
"when": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/newrelic/node-newrelic.git"
},
"files": [
"index.js",
"api.js",
"stub_api.js",
"newrelic.js",
"README.md",
"LICENSE",
"NEWS.md",
"THIRD_PARTY_NOTICES.md",
"lib/",
"bin/tracetractor",
"bin/test-naming-rules.js",
"esm-loader.mjs"
]
}