71 lines
2.5 KiB
JSON
71 lines
2.5 KiB
JSON
{
|
|
"name": "opentelemetry-base",
|
|
"version": "0.14.0",
|
|
"description": "OpenTelemetry is a distributed tracing and stats collection framework.",
|
|
"main": "build/src/index.js",
|
|
"types": "build/src/index.d.ts",
|
|
"scripts": {
|
|
"compile": "tsc --build",
|
|
"watch": "tsc --build --watch",
|
|
"clean": "tsc --build --clean",
|
|
"bench": "node benchmark",
|
|
"postinstall": "update-ts-references && npm run bootstrap",
|
|
"postcompile": "npm run submodule && npm run protos:copy",
|
|
"submodule": "git submodule sync --recursive && git submodule update --init --recursive",
|
|
"protos:copy": "lerna run protos:copy",
|
|
"version:update": "lerna run version:update",
|
|
"test": "lerna run test",
|
|
"test:browser": "lerna run test:browser",
|
|
"test:backcompat": "lerna run test:backcompat",
|
|
"bootstrap": "lerna bootstrap",
|
|
"codecov": "lerna run codecov",
|
|
"codecov:browser": "lerna run codecov:browser",
|
|
"predocs-test": "npm run docs",
|
|
"docs-test": "lerna run docs-test",
|
|
"docs": "lerna run docs",
|
|
"docs-deploy": "gh-pages --dist packages/opentelemetry-api/docs/out",
|
|
"lint": "lerna run lint",
|
|
"lint:fix": "lerna run lint:fix",
|
|
"lint:examples": "eslint ./examples/**/*.js",
|
|
"lint:examples:fix": "eslint ./examples/**/*.js --fix",
|
|
"lint:markdown": "./node_modules/.bin/markdownlint $(git ls-files '*.md') -i ./CHANGELOG.md",
|
|
"lint:markdown:fix": "./node_modules/.bin/markdownlint $(git ls-files '*.md') -i ./CHANGELOG.md --fix"
|
|
},
|
|
"repository": "open-telemetry/opentelemetry-js",
|
|
"keywords": [
|
|
"opentelemetry",
|
|
"nodejs",
|
|
"profiling",
|
|
"metrics",
|
|
"stats"
|
|
],
|
|
"author": "OpenTelemetry Authors",
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "11.0.0",
|
|
"@commitlint/config-conventional": "11.0.0",
|
|
"@typescript-eslint/eslint-plugin": "4.9.1",
|
|
"@typescript-eslint/parser": "4.9.1",
|
|
"beautify-benchmark": "0.2.4",
|
|
"benchmark": "2.1.4",
|
|
"eslint": "7.15.0",
|
|
"eslint-config-airbnb-base": "14.2.1",
|
|
"eslint-plugin-header": "3.1.0",
|
|
"eslint-plugin-import": "2.22.1",
|
|
"gh-pages": "3.1.0",
|
|
"gts": "2.0.2",
|
|
"husky": "4.3.5",
|
|
"lerna": "3.22.1",
|
|
"lerna-changelog": "1.0.1",
|
|
"markdownlint-cli": "0.25.0",
|
|
"typescript": "3.9.7",
|
|
"update-ts-references": "2.0.0"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lerna run --concurrency 1 --stream lint --since HEAD --exclude-dependents",
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
}
|
|
}
|
|
}
|