forked from census-instrumentation/opencensus-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1023 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
{
"name": "@opencensus/opencensus-web-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-web",
"scripts": {
"postinstall": "npm run bootstrap",
"compile": "lerna run compile",
"test": "lerna run test",
"bootstrap": "lerna bootstrap",
"bump": "lerna publish --skip-npm --skip-git",
"codecov": "lerna run codecov",
"check": "lerna run check"
},
"keywords": [
"opencensus",
"browser",
"tracing",
"profiling",
"stats",
"metrics"
],
"author": "OpenCensus Authors",
"license": "Apache-2.0",
"files": [
"build/src/**/*.js",
"build/src/**/*.d.ts",
"doc",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=6.0"
},
"devDependencies": {
"lerna": "^3.13.4"
}
}