This repository has been archived by the owner on Aug 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.65 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
{
"name": "@expresso/tracing",
"version": "1.0.7",
"description": "@expresso tracing tools",
"main": "dist/index.js",
"scripts": {
"test": "mocha -b -r ts-node/register test/**/*.ts",
"build": "tsc",
"clean": "rm -rf dist tsconfig.tsbuildinfo",
"build:clean": "npm run clean && npm run build",
"lint": "eslint src/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"prepack": "npm run build:clean && npm run lint && npm test"
},
"author": "Rogério Munhoz <[email protected]>",
"license": "GPL-3.0",
"keywords": [
"jaeger",
"tracing",
"express",
"expresso",
"distributed tracing"
],
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.20",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"eslint": "^6.7.2",
"eslint-config-standard-with-typescript": "^11.0.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.1.0",
"mocha": "^6.2.2",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm test && npm run lint"
}
},
"dependencies": {
"@opentelemetry/core": "0.3.2",
"@opentelemetry/exporter-jaeger": "0.3.2",
"@opentelemetry/node": "0.3.2",
"@opentelemetry/plugin-http": "0.3.2",
"@types/express": "^4.17.2",
"@types/express-mung": "^0.5.2",
"express-mung": "^0.5.1"
},
"files": [
"dist",
"tracer.js"
],
"repository": {
"type": "git",
"url": "https://github.com/expresso/tracing"
}
}