72 lines
1.7 KiB
JSON
72 lines
1.7 KiB
JSON
{
|
|
"name": "@opentelemetry/context-zone",
|
|
"version": "0.8.3",
|
|
"description": "OpenTelemetry Context Zone",
|
|
"main": "build/src/index.js",
|
|
"types": "build/src/index.d.ts",
|
|
"repository": "open-telemetry/opentelemetry-js",
|
|
"scripts": {
|
|
"lint": "eslint . --ext .ts",
|
|
"lint:fix": "eslint . --ext .ts --fix",
|
|
"clean": "rimraf build/*",
|
|
"version:update": "node ../../scripts/version-update.js",
|
|
"compile": "npm run version:update && tsc -p .",
|
|
"prepare": "npm run compile",
|
|
"watch": "tsc -w"
|
|
},
|
|
"keywords": [
|
|
"opentelemetry",
|
|
"web",
|
|
"tracing",
|
|
"profiling",
|
|
"metrics",
|
|
"stats"
|
|
],
|
|
"author": "OpenTelemetry Authors",
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"node": ">=8.0.0"
|
|
},
|
|
"files": [
|
|
"build/src/**/*.js",
|
|
"build/src/**/*.d.ts",
|
|
"doc",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.6.0",
|
|
"@types/mocha": "^7.0.0",
|
|
"@types/node": "^14.0.5",
|
|
"@types/sinon": "^7.0.13",
|
|
"@types/webpack-env": "1.15.2",
|
|
"babel-loader": "^8.0.6",
|
|
"codecov": "^3.6.1",
|
|
"gts": "^2.0.0",
|
|
"karma": "^5.0.5",
|
|
"karma-chrome-launcher": "^2.2.0",
|
|
"karma-mocha": "^2.0.1",
|
|
"karma-spec-reporter": "^0.0.32",
|
|
"karma-webpack": "^4.0.2",
|
|
"mocha": "^7.1.2",
|
|
"nyc": "^15.0.0",
|
|
"rimraf": "^3.0.0",
|
|
"sinon": "^7.5.0",
|
|
"ts-loader": "^6.0.4",
|
|
"ts-mocha": "^7.0.0",
|
|
"ts-node": "^8.6.2",
|
|
"typescript": "^3.6.3",
|
|
"webpack": "^4.35.2",
|
|
"webpack-cli": "^3.3.9",
|
|
"webpack-merge": "^4.2.2"
|
|
},
|
|
"dependencies": {
|
|
"@opentelemetry/context-zone-peer-dep": "^0.8.3",
|
|
"zone.js": "^0.10.2"
|
|
},
|
|
"sideEffects": true
|
|
}
|