UNPKG

1.83 kBJSONView Raw
1{
2 "name": "@opencensus/core",
3 "version": "0.1.0",
4 "description": "OpenCensus is a toolkit for collecting application performance and behavior data.",
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 "compile:release": "tsc -p tsconfig-release.json",
15 "fix": "gts fix",
16 "prepare": "npm run compile:release",
17 "posttest": "npm run check"
18 },
19 "keywords": [
20 "opencensus",
21 "nodejs",
22 "tracing",
23 "profiling",
24 "metrics",
25 "stats"
26 ],
27 "author": "Google Inc.",
28 "license": "Apache-2.0",
29 "engines": {
30 "node": ">=8"
31 },
32 "files": [
33 "build/src/**/*.js",
34 "build/src/**/*.d.ts",
35 "doc",
36 "CHANGELOG.md",
37 "LICENSE",
38 "README.md"
39 ],
40 "nyc": {
41 "extension": [
42 ".ts",
43 ".tsx"
44 ],
45 "exclude": [
46 "**/*.d.ts",
47 "build/**/**/*.js"
48 ],
49 "all": true
50 },
51 "publishConfig": {
52 "access": "public"
53 },
54 "devDependencies": {
55 "@types/continuation-local-storage": "3.2.1",
56 "@types/mocha": "8.2.3",
57 "@types/node": "10.17.60",
58 "@types/once": "1.4.0",
59 "@types/semver": "7.3.7",
60 "@types/shimmer": "1.0.2",
61 "@types/uuid": "7.0.5",
62 "codecov": "3.8.3",
63 "gts": "1.1.2",
64 "intercept-stdout": "0.1.2",
65 "mocha": "7.2.0",
66 "nyc": "15.1.0",
67 "ts-mocha": "8.0.0",
68 "ts-node": "8.10.2",
69 "typescript": "3.9.10"
70 },
71 "dependencies": {
72 "continuation-local-storage": "^3.2.1",
73 "log-driver": "^1.2.7",
74 "semver": "^7.0.0",
75 "shimmer": "^1.2.0",
76 "uuid": "^8.0.0"
77 }
78}