-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 2.36 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
{
"name": "@sumologic/opentelemetry-rum",
"version": "4.6.1",
"description": "Adds OpenTelemetry tracing auto-instrumentation in the browser. Collects spans on network events and sends them to Sumo Logic.",
"main": "./dist/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "node ./scripts/bundle.js && rollup -c",
"eslint-fix": "eslint --fix",
"lint-staged": "lint-staged",
"prettier-check-all": "prettier --check .",
"prettier-format-all": "prettier --write .",
"types": "npx tsc --noEmit",
"test": "npx jest && npx playwright test --retries=3 e2e_test/ && npm run prettier-check-all",
"test:ut": "npx jest",
"test:e2e": "npx playwright test --retries=3 e2e_test",
"prepare": "husky install"
},
"repository": "SumoLogic/sumologic-opentelemetry-js",
"author": "Sumo Logic Authors",
"license": "Apache-2.0",
"keywords": [
"opentelemetry",
"tracing",
"sumologic",
"sumo",
"rum",
"ot"
],
"devDependencies": {
"@playwright/test": "^1.15.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/json-diff": "^0.7.0",
"@types/node": "^15.14.9",
"@types/shimmer": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"axios": "^0.21.4",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"express": "^4.17.1",
"husky": "^8.0.0",
"jest": "^27.2.4",
"json-diff": "^0.7.4",
"lint-staged": "^13.2.1",
"lodash.merge": "^4.6.2",
"playwright": "^1.15.0",
"prettier": "^2.4.1",
"require-in-the-middle": "^6.0.0",
"rollup": "^2.57.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"shimmer": "^1.2.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3",
"web-vitals": "^2.1.4",
"zone.js": "^0.11.4"
},
"peerDependencies": {
"@opentelemetry/api": "1.8.0",
"@opentelemetry/sdk-trace-base": "1.22.0"
},
"lint-staged": {
"*.{md}": [
"npm run prettier-format-all"
],
"*.{ts,tsx,js,jsx,json}": [
"npm run eslint-fix",
"npm run prettier-format-all"
]
}
}