-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
65 lines (65 loc) · 1.74 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
{
"name": "signalfx",
"version": "8.0.1",
"description": "Node.js client library for SignalFx",
"homepage": "https://signalfx.com",
"repository": "https://github.com/signalfx/signalfx-nodejs",
"author": {
"name": "SignalFx, Inc",
"email": "[email protected]",
"url": "https://signalfx.com"
},
"files": [
"lib",
"proto",
"build/signalfx.min.js",
"build/signalfx.min.d.ts"
],
"main": "lib/signalfx.js",
"browser": {
"lib/signalfx.js": "build/signalfx.min.js"
},
"keywords": [
"signalfx",
"nodejs"
],
"devDependencies": {
"@babel/core": "^7.19.0",
"@splunk/babel-preset": "^3.0.0",
"babel-loader": "^8.2.5",
"chai": "^4.3.6",
"copy-webpack-plugin": "^11.0.0",
"eslint": "7.32",
"mocha": "^10.0.0",
"mockery": "^2.1.0",
"sinon": "^14.0.0",
"vinyl-source-stream": "^2.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"axios": "^1.7.7",
"base64-js": "^1.5.1",
"bignumber.js": "^9.1.0",
"https-proxy-agent": "^5.0.1",
"pako": "^2.0.4",
"protobufjs": "^7.2.4",
"protobufjs-cli": "^1.1.1",
"sse.js": "^0.6.0",
"ws": "^7.5.10"
},
"scripts": {
"build:browser": "webpack",
"genprotobuf": "pbjs -t static-module -w commonjs proto/signal_fx_protocol_buffers.proto > ./proto/signal_fx_protocol_buffers_pb2.js",
"lint": "eslint lib/** .eslintrc.js",
"test": "mocha --watch --bail --recursive -n unhandled-rejections=strict './test/**'",
"test:ci": "mocha --recursive -n unhandled-rejections=strict './test/**'",
"prepare": "npm run build:browser"
},
"engines": {
"node": ">=12.10 <=21",
"npm": ">=7.0 <10"
},
"license": "Apache-2.0"
}