forked from census-instrumentation/opencensus-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1017 Bytes
/
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
{
"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": {
"postinstall": "npm run bootstrap",
"compile": "lerna run compile",
"test": "lerna run test",
"bootstrap": "lerna bootstrap",
"bump": "lerna publish",
"codecov": "lerna run codecov"
},
"keywords": [
"opencensus",
"nodejs",
"tracing",
"profiling",
"metrics",
"stats"
],
"author": "Google Inc.",
"license": "Apache-2.0",
"engines": {
"node": ">=6.0"
},
"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",
"typescript": "^3.0.0"
}
}