This repository was archived by the owner on Oct 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.41 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.41 KB
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": "@opencensus/instrumentation-redis",
"version": "0.1.0",
"description": "Opencensus Redis automatic instrumentation package.",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"repository": "census-instrumentation/opencensus-node",
"scripts": {
"test": "nyc mocha build/test/**/*.js",
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json",
"clean": "rimraf build/*",
"check": "gts check",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"keywords": [
"opencensus",
"nodejs",
"tracing",
"profiling"
],
"author": "Google Inc.",
"license": "Apache-2.0",
"engines": {
"node": ">=8"
},
"files": [
"build/src/**/*.js",
"build/src/**/*.d.ts",
"doc",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/mocha": "8.2.3",
"@types/node": "10.17.60",
"@types/redis": "4.0.10",
"@types/semver": "7.3.7",
"@types/shimmer": "1.0.2",
"codecov": "3.8.3",
"gts": "1.1.2",
"mocha": "7.2.0",
"nyc": "15.1.0",
"redis": "4.6.7",
"rimraf": "3.0.2",
"ts-node": "8.10.2",
"typescript": "3.9.10"
},
"dependencies": {
"@opencensus/core": "^0.1.0",
"semver": "^7.0.0",
"shimmer": "^1.2.0"
}
}