1 | {
|
2 | "name": "@opencensus/propagation-b3",
|
3 | "version": "0.1.0",
|
4 | "description": "Opencensus propagation package for B3 format.",
|
5 | "main": "build/src/index.js",
|
6 | "types": "build/src/index.d.ts",
|
7 | "repository": "census-instrumentation/opencensus-node",
|
8 | "scripts": {
|
9 | "test": "nyc ts-mocha -p ./tsconfig.json test/**/*.ts",
|
10 | "codecov": "nyc report --reporter=json && codecov -f coverage/*.json",
|
11 | "clean": "rimraf build/*",
|
12 | "check": "gts check",
|
13 | "compile": "tsc -p .",
|
14 | "fix": "gts fix",
|
15 | "prepare": "npm run compile",
|
16 | "posttest": "npm run check"
|
17 | },
|
18 | "keywords": [
|
19 | "opencensus",
|
20 | "nodejs",
|
21 | "tracing",
|
22 | "profiling"
|
23 | ],
|
24 | "author": "Google Inc.",
|
25 | "license": "Apache-2.0",
|
26 | "engines": {
|
27 | "node": ">=8"
|
28 | },
|
29 | "files": [
|
30 | "build/src/**/*.js",
|
31 | "build/src/**/*.d.ts",
|
32 | "doc",
|
33 | "CHANGELOG.md",
|
34 | "LICENSE",
|
35 | "README.md"
|
36 | ],
|
37 | "nyc": {
|
38 | "extension": [
|
39 | ".ts",
|
40 | ".tsx"
|
41 | ],
|
42 | "exclude": [
|
43 | "**/*.d.ts",
|
44 | "build/**/**/*.js"
|
45 | ],
|
46 | "all": true
|
47 | },
|
48 | "publishConfig": {
|
49 | "access": "public"
|
50 | },
|
51 | "devDependencies": {
|
52 | "@types/mocha": "8.2.3",
|
53 | "@types/node": "10.17.60",
|
54 | "@types/uuid": "7.0.5",
|
55 | "codecov": "3.8.3",
|
56 | "gts": "1.1.2",
|
57 | "mocha": "7.2.0",
|
58 | "nyc": "15.1.0",
|
59 | "rimraf": "3.0.2",
|
60 | "ts-mocha": "8.0.0",
|
61 | "ts-node": "8.10.2",
|
62 | "typescript": "3.9.10"
|
63 | },
|
64 | "dependencies": {
|
65 | "@opencensus/core": "^0.1.0",
|
66 | "uuid": "^8.0.0"
|
67 | }
|
68 | }
|