forked from signalfx/splunk-otel-js-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
131 lines (129 loc) · 5.6 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "@splunk/otel-web",
"version": "0.8.1",
"description": "Splunk distribution of Open Telemetry for browser environment.",
"repository": "github:signalfx/splunk-otel-js-browser",
"scripts": {
"start": "npm-run-all -s compile start:_execute",
"start:_execute": "node utils/devServer/runDevServer.js",
"compile": "npm-run-all -s compile:*",
"compile:browser": "rollup -c",
"compile:tsc": "tsc --build tsconfig.cjs.json tsconfig.esm.json",
"test:unit:watch": "karma start",
"test:unit:ci": "nyc karma start --single-run --no-auto-watch --browsers ChromeHeadless",
"lint": "eslint --quiet src/ test/ integration-tests/",
"lint:markdown": "markdownlint *.md docs/*.md",
"lint:fix": "eslint --fix src/ test/ integration-tests/",
"test:integration:local": "npm-run-all -s compile test:integration:local:headlessChrome:_execute",
"test:integration:local:firefox": "npm-run-all -s compile test:integration:local:firefox:_execute",
"test:integration:local:chrome": "npm-run-all -s compile test:integration:local:chrome:_execute",
"test:integration:local:safari": "npm-run-all -s compile test:integration:local:safari:_execute",
"test:integration:local:all": "npm-run-all -s compile test:integration:local:all:_execute",
"test:integration:local:all:_execute": "nightwatch -c ./integration-tests/utils/local.conf.js -e headlessChrome,headlessFirefox,chrome,safari",
"test:integration:local:chrome:_execute": "nightwatch -c ./integration-tests/utils/local.conf.js -e chrome",
"test:integration:local:firefox:_execute": "nightwatch -c ./integration-tests/utils/local.conf.js -e firefox",
"test:integration:local:headlessChrome:_execute": "nightwatch -c ./integration-tests/utils/local.conf.js -e headlessChrome",
"test:integration:local:headlessFirefox:_execute": "nightwatch -c ./integration-tests/utils/local.conf.js -e headlessFirefox",
"test:integration:local:safari:_execute": "nightwatch -c ./integration-tests/utils/local.conf.js -e safari",
"test.saucelabs.us": "nightwatch --config ./integration-tests/utils/saucelabs.conf.js --env ie11 --skiptags skip-ie11 --verbose true",
"test:integration:_selfSignCerts": "(cd utils && cd certs && openssl req -nodes -new -x509 -keyout server.key -out server.cert)",
"test:performance": "node ./performance-tests/runner.js",
"version:check": "node ./scripts/version-check.js",
"version:update": "node ./scripts/version-update.js",
"tag:check": "node ./scripts/tag-check.js"
},
"author": "Splunk Observability Instrumentals Team <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "~7.14.0",
"@opentelemetry/api": "1.0.2",
"@opentelemetry/api-metrics": "0.24.0",
"@opentelemetry/core": "0.24.0",
"@opentelemetry/exporter-zipkin": "0.24.0",
"@opentelemetry/instrumentation": "0.24.0",
"@opentelemetry/instrumentation-document-load": "0.24.0",
"@opentelemetry/instrumentation-fetch": "0.24.0",
"@opentelemetry/instrumentation-user-interaction": "0.24.0",
"@opentelemetry/instrumentation-xml-http-request": "0.24.0",
"@opentelemetry/resources": "0.24.0",
"@opentelemetry/semantic-conventions": "0.24.0",
"@opentelemetry/tracing": "0.24.0",
"@opentelemetry/web": "0.24.0",
"saucelabs": "^6.2.0",
"shimmer": "~1.2.1",
"web-vitals": "~2.1.0"
},
"browser": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"files": [
"dist/cjs/*.js",
"dist/cjs/*.js.map",
"dist/cjs/*.d.ts",
"dist/esm/*.js",
"dist/esm/*.js.map",
"dist/esm/*.d.ts"
],
"devDependencies": {
"@aws-sdk/client-cloudfront": "^3.15.0",
"@aws-sdk/client-s3": "^3.15.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.1",
"@babel/runtime-corejs3": "^7.14.0",
"@octokit/graphql": "^4.6.1",
"@octokit/request": "^5.4.15",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "19.x",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/nightwatch": "^1.3.3",
"@types/shimmer": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"body-parser": "^1.19.0",
"browserstack-local": "^1.4.8",
"chai": "^4.3.4",
"chrome-launcher": "^0.14.0",
"chromedriver": "^93.0.0",
"codecov": "^3.8.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"eslint": "^7.26.0",
"eslint-plugin-header": "^3.1.1",
"express": "^4.17.1",
"geckodriver": "^2.0.0",
"generate-source-map": "0.0.5",
"http-mitm-proxy": "^0.9.0",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-rollup-preprocessor": "7.0.7",
"karma-spec-reporter": "^0.0.32",
"karma-websocket-server": "^1.0.0",
"lighthouse": "^7.4.0",
"markdownlint-cli": "^0.27.1",
"mocha": "^8.4.0",
"nightwatch": "1.6.4",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"puppeteer": "^9.1.1",
"rollup": "^2.47.0",
"rollup-plugin-istanbul": "^3.0.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"selenium-server": "^3.141.59",
"sinon": "^11.1.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4",
"ws": "^7.4.5",
"zone.js": "^0.11.4"
}
}