This repository was archived by the owner on Aug 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "elastic-apm-http-client",
"version": "12.0.0",
"description": "A low-level HTTP client for communicating with the Elastic APM intake API",
"main": "index.js",
"directories": {
"test": "test"
},
"files": [
"lib"
],
"scripts": {
"lint": "eslint --ext=js,mjs,cjs . # requires node >=16.0.0",
"lint:fix": "eslint --ext=js,mjs,cjs --fix . # requires node >=16.0.0",
"test": "nyc node ./scripts/run-tests.js"
},
"engines": {
"node": "^8.6.0 || 10 || >=12"
},
"author": "Thomas Watson <[email protected]> (https://twitter.com/wa7son)",
"license": "MIT",
"dependencies": {
"agentkeepalive": "^4.2.1",
"breadth-filter": "^2.0.0",
"end-of-stream": "^1.4.4",
"fast-safe-stringify": "^2.0.7",
"fast-stream-to-buffer": "^1.0.0",
"object-filter-sequence": "^1.0.0",
"readable-stream": "^3.4.0",
"semver": "^6.3.0",
"stream-chopper": "^3.0.1"
},
"devDependencies": {
"eslint": "^8.42.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-license-header": "^0.6.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"glob": "^7.2.3",
"ndjson": "^1.5.0",
"nyc": "^14.1.1",
"tape": "^4.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elastic/apm-nodejs-http-client.git"
},
"bugs": {
"url": "https://github.com/elastic/apm-nodejs-http-client/issues"
},
"homepage": "https://github.com/elastic/apm-nodejs-http-client",
"keywords": [
"elastic",
"apm",
"http",
"client"
]
}