-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.34 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
{
"scripts": {
"prebuild": "eslint . --ext .ts",
"build": "tsc",
"lint": "eslint . --ext .ts",
"format": "eslint . --ext .ts --fix",
"dev-driver": "ts-node --prefer-ts-exts test/dev-driver.ts"
},
"license": "MIT",
"main": "dist/src/index.js",
"files": [
"dist/src",
"dist/package.json"
],
"types": "dist/src/index.d.ts",
"devDependencies": {
"@types/google-protobuf": "3.15.6",
"@types/jest": "27.0.1",
"@types/node": "^20.6.0",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "4.31.0",
"@typescript-eslint/parser": "4.31.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "5.1.0",
"jest": "27.1.1",
"prettier": "2.4.0",
"protoc-gen-ts": "^0.8.6",
"ts-jest": "27.0.5",
"ts-node": "^10.9.1",
"typescript": "4.9.5"
},
"dependencies": {
"@grpc/grpc-js": "^1.10.5",
"goodmetrics-generated": "0.1.1",
"google-protobuf": "3.21.2",
"js-csp": "^1.0.1",
"otlp-generated": "0.1.1",
"uuid": "^9.0.1"
},
"engines": {
"node": ">=16.0.0"
},
"overrides": {
"core-js": "3.37.1"
},
"name": "goodmetrics-nodejs",
"version": "0.7.0"
}