forked from signalfx/splunk-otel-js-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 2.83 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
{
"name": "@kloudmate/otel-js-web",
"private": true,
"version": "0.1.0",
"--workspaces": "Hardcoded so npm runs workspaces commands in order",
"workspaces": [
"packages/web",
"packages/session-recorder"
],
"engines": {
"--": "Versions required for development only (recent enough to use npm workspaces)",
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"compile": "npm run --ws compile --",
"lint": "eslint --ignore-path .gitignore packages/*/src/ packages/*/test/ packages/*/integration-tests/",
"lint:markdown": "markdownlint *.md docs/*.md",
"lint:fix": "eslint --ignore-path .gitignore --fix packages/*/src/ packages/*/test/ packages/*/integration-tests/",
"test:integration:local": "npm run --ws --if-present test:integration:local --",
"test:integration:local:all": "npm run --ws --if-present test:integration:local:all --",
"test:integration:local:chrome": "npm run --ws --if-present test:integration:local:chrome --",
"test:integration:local:firefox": "npm run --ws --if-present test:integration:local:firefox --",
"test:integration:local:safari": "npm run --ws --if-present test:integration:local:safari --",
"test:integration:local:all:_execute": "npm run --ws --if-present test:integration:local:all:_execute --",
"test:integration:local:chrome:_execute": "npm run --ws --if-present test:integration:local:chrome:_execute --",
"test:integration:local:firefox:_execute": "npm run --ws --if-present test:integration:local:firefox:_execute --",
"test:integration:local:headlessChrome:_execute": "npm run --ws --if-present test:integration:local:headlessChrome:_execute --",
"test:integration:local:headlessFirefox:_execute": "npm run --ws --if-present test:integration:local:headlessFirefox:_execute --",
"test:integration:local:safari:_execute": "npm run --ws --if-present test:integration:local:safari:_execute --",
"test:integration:remote": "npm run --ws --if-present test:integration:remote --",
"test:performance": "npm run --ws --if-present test:performance --",
"test:unit:ci": "npm run --ws --if-present test:unit:ci --",
"test:unit:ci-node": "npm run --ws --if-present test:unit:ci-node --",
"postversion": "node ./scripts/version-update.mjs",
"version:bump": "npm version --workspaces --include-workspace-root",
"version:check": "node ./scripts/version-check.mjs",
"tag:check": "node ./scripts/tag-check.js",
"deploy": "node ./scripts/release-cdn.mjs"
},
"devDependencies": {
"@aws-sdk/client-cloudfront": "^3.171.0",
"@aws-sdk/client-s3": "^3.171.0",
"@octokit/graphql": "^7.0.1",
"@octokit/request": "^8.1.1",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"dotenv": "^16.3.1",
"eslint": "^8.45.0",
"eslint-plugin-header": "^3.1.1",
"typescript": "^5.1.6"
}
}