forked from census-instrumentation/opencensus-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "@opencensus/opencensus-base",
"version": "0.0.1",
"description": "OpenCensus is a toolkit for collecting application performance and behavior data.",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"repository": "census-instrumentation/opencensus-node",
"scripts": {
"fix": "lerna run fix",
"postinstall": "npm run bootstrap",
"compile": "lerna run compile",
"test": "lerna run test",
"bootstrap": "lerna bootstrap",
"bump": "lerna publish",
"codecov": "lerna run codecov",
"check": "lerna run check",
"docs": "typedoc --tsconfig ./packages/opencensus-core/tsconfig.json"
},
"keywords": [
"opencensus",
"nodejs",
"tracing",
"profiling",
"metrics",
"stats"
],
"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/node": "^10.12.12",
"lerna": "^2.11.0",
"typedoc": "^0.17.0",
"typescript": "^3.0.0"
}
}