-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.53 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
{
"name": "@wdalmut/opentelemetry-plugin-mongoose",
"version": "0.2.3",
"description": "OpenTelemetry mongoose automatic instrumentation package.",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
"test": "jasmine-ts --config=jasmine.json",
"build": "./node_modules/.bin/tsc",
"watch": "npm run build -- -w",
"coverage": "./node_modules/.bin/nyc npm test",
"report": "./node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov"
},
"files": [
"lib/**/*.js",
"lib/**/*.ts",
"src/**/*.ts",
"package.json",
"tsconfig.json",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"repository": "wdalmut/opentelemetry-plugin-mongoose",
"author": "Walter Dal Mut <walter.dalmut@gmail.com>",
"license": "MIT",
"keywords": [
"opentelemetry",
"mongoose",
"mongodb",
"nodejs",
"tracing",
"profiling",
"plugin"
],
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@opentelemetry/api": "^0.6.0",
"@opentelemetry/core": "^0.6.0",
"shimmer": "^1.2.1"
},
"devDependencies": {
"@opentelemetry/context-async-hooks": "^0.6.0",
"@opentelemetry/node": "^0.6.0",
"@opentelemetry/tracing": "^0.6.0",
"@types/jasmine": "^3.5.10",
"@types/mongoose": "^5.7.8",
"@types/shimmer": "^1.0.1",
"jasmine": "^3.5.0",
"jasmine-spec-reporter": "^5.0.2",
"jasmine-ts": "^0.3.0",
"mongoose": "^5.9.7",
"nyc": "^15.0.1",
"ts-node": "^8.10.2",
"typescript": "^3.8.3"
}
}