This repository was archived by the owner on Jun 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.36 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.36 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
{
"name": "@opencensus/js-core",
"version": "0.0.1",
"description": "[![Gitter chat][gitter-image]][gitter-url]",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"test": "echo \"Error: no tests exist yet\" && exit 0",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check",
"proto": "npm run proto:stats && npm run proto:trace",
"proto:stats": "pbjs -t static-module -w commonjs third_party/opencensus-proto/stats/stats.proto | pbts -o interfaces/stats.d.ts -",
"proto:trace": "pbjs -t static-module -w commonjs third_party/opencensus-proto/trace/trace.proto | pbts -o interfaces/trace.d.ts -"
},
"repository": "census-instrumentation/opencensus-js-core",
"files": [
"build/src",
"LICENSE",
"README.md"
],
"keywords": [
"census",
"opencensus",
"tracing",
"trace",
"instrumentation",
"stats"
],
"author": "See AUTHORS file.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/census-instrumentation/opencensus-js-core/issues"
},
"homepage": "https://github.com/census-instrumentation/opencensus-js-core#readme",
"devDependencies": {
"gts": "^0.5.2",
"protobufjs": "~6.8.3",
"typescript": "~2.6.1"
}
}