mirror of
https://github.com/github/codeql-action.git
synced 2026-05-04 12:50:14 +00:00
91 lines
2.6 KiB
JSON
91 lines
2.6 KiB
JSON
{
|
|
"author": {
|
|
"name": "OpenTelemetry Authors"
|
|
},
|
|
"browser": {
|
|
"./src/platform/index.ts": "./src/platform/browser/index.ts",
|
|
"./build/src/platform/index.js": "./build/src/platform/browser/index.js"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/open-telemetry/opentelemetry-js/issues"
|
|
},
|
|
"bundleDependencies": false,
|
|
"dependencies": {
|
|
"@opentelemetry/context-base": "^0.10.2"
|
|
},
|
|
"deprecated": false,
|
|
"description": "Public API for OpenTelemetry",
|
|
"devDependencies": {
|
|
"@types/mocha": "8.0.0",
|
|
"@types/node": "14.0.27",
|
|
"@types/webpack-env": "1.15.2",
|
|
"codecov": "3.7.2",
|
|
"gts": "2.0.2",
|
|
"istanbul-instrumenter-loader": "3.0.1",
|
|
"karma": "5.1.1",
|
|
"karma-chrome-launcher": "3.1.0",
|
|
"karma-coverage-istanbul-reporter": "3.0.3",
|
|
"karma-mocha": "2.0.1",
|
|
"karma-spec-reporter": "0.0.32",
|
|
"karma-webpack": "4.0.2",
|
|
"linkinator": "2.1.1",
|
|
"mocha": "7.2.0",
|
|
"nyc": "15.1.0",
|
|
"ts-loader": "8.0.1",
|
|
"ts-mocha": "7.0.0",
|
|
"typedoc": "0.17.8",
|
|
"typescript": "3.9.7",
|
|
"webpack": "4.44.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.0.0"
|
|
},
|
|
"files": [
|
|
"build/src/**/*.js",
|
|
"build/src/**/*.js.map",
|
|
"build/src/**/*.d.ts",
|
|
"doc",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"gitHead": "b247e69034a7888a842fe75e0a5ff06f8bea44a8",
|
|
"homepage": "https://github.com/open-telemetry/opentelemetry-js#readme",
|
|
"keywords": [
|
|
"opentelemetry",
|
|
"nodejs",
|
|
"browser",
|
|
"tracing",
|
|
"profiling",
|
|
"metrics",
|
|
"stats",
|
|
"monitoring"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"main": "build/src/index.js",
|
|
"name": "@opentelemetry/api",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/open-telemetry/opentelemetry-js.git"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run compile",
|
|
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json -p ../../",
|
|
"codecov:browser": "nyc report --reporter=json && codecov -f coverage/*.json -p ../../",
|
|
"compile": "npm run version:update && tsc -p .",
|
|
"docs": "typedoc --tsconfig tsconfig.json --exclude test/**/*.ts",
|
|
"docs-test": "linkinator docs/out --silent --skip david-dm.org",
|
|
"lint": "eslint . --ext .ts",
|
|
"lint:fix": "eslint . --ext .ts --fix",
|
|
"precompile": "tsc --version",
|
|
"prepare": "npm run compile",
|
|
"test": "nyc ts-mocha -p tsconfig.json test/**/*.test.ts",
|
|
"test:browser": "nyc karma start --single-run",
|
|
"version:update": "node ../../scripts/version-update.js",
|
|
"watch": "tsc -w"
|
|
},
|
|
"types": "build/src/index.d.ts",
|
|
"version": "0.10.2"
|
|
} |