mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-02 21:10:47 -05:00
24f1460692
* Revert "chore: remove Typescript dependency from app node_modules in binary (#27577)" This reverts commit60d4c8356c. * Revert "chore: simplify build script (#27547)" This reverts commit0a86ec686e. * Revert "chore: upgrade lerna to 6, cache build step (#26913)" This reverts commit9e60aeba8f. * build everything * [run ci]
39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
JSON
{
|
|
"name": "@packages/telemetry",
|
|
"version": "0.0.0-development",
|
|
"description": "open telemetry wrapper used throughout the cypress monorepo to instrument the cypress app",
|
|
"private": true,
|
|
"main": "dist/node.js",
|
|
"browser": "src/browser.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"build-prod": "yarn build",
|
|
"check-ts": "tsc --noEmit && yarn -s tslint",
|
|
"clean": "rimraf dist",
|
|
"test": "yarn test-unit",
|
|
"test-unit": "mocha --config ./test/.mocharc.js",
|
|
"tslint": "tslint --config ../ts/tslint.json --project .",
|
|
"watch": "tsc --watch"
|
|
},
|
|
"dependencies": {
|
|
"@opentelemetry/api": "1.4.1",
|
|
"@opentelemetry/core": "1.12.0",
|
|
"@opentelemetry/exporter-trace-otlp-http": "0.38.0",
|
|
"@opentelemetry/otlp-exporter-base": "0.38.0",
|
|
"@opentelemetry/resources": "1.12.0",
|
|
"@opentelemetry/sdk-trace-base": "1.12.0",
|
|
"@opentelemetry/sdk-trace-node": "1.12.0",
|
|
"@opentelemetry/sdk-trace-web": "1.12.0",
|
|
"@opentelemetry/semantic-conventions": "1.12.0"
|
|
},
|
|
"devDependencies": {
|
|
"@packages/ts": "0.0.0-development",
|
|
"mocha": "7.0.1"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"types": "src/node.ts"
|
|
}
|