-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.93 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
{
"name": "@babbel/rollbar-client.js",
"version": "2.1.0",
"author": "Eric L. Goldstein <[email protected]>",
"description": "Tiny, modern Rollbar TypeScript client whose code is mostly lazy-loaded if and when an error occurs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/babbel/rollbar-client.js"
},
"engines": {
"node": ">=16.13.0"
},
"packageManager": "[email protected]",
"files": [
"dist/"
],
"exports": {
"import": "./dist/RollbarClient.mjs"
},
"scripts": {
"build": "npm-run-all --silent validate:environment build:vite build:types",
"build:vite": "vite build --config config/vite/vite.config.mts",
"build:types": "tsc",
"delete:node_modules": "rm -rf node_modules",
"delete:package-lock": "rm -f package-lock.json",
"dev": "vite dev --config config/vite/vite.config.mts",
"format:code": "prettier --write --cache --no-editorconfig .",
"lint:typescript": "echo Linting TypeScript... && eslint --ext cts,ts,mts --cache --cache-location .eslintcache --cache-strategy content src/",
"list:eslint:disable-directives": "rg '/(/|\\*+)[ \\t]*eslint-disable[^*]*(\\*+/)?'",
"list:todo-comments": "rg --only-matching '(TODO|FIXME):[a-zA-Z0-9\\t .,;?!@#$%^&*()]+'",
"reinstall": "npm run --silent delete:node_modules && npm run --silent delete:package-lock && npm i",
"reinstall:use-lock-file": "npm run --silent delete:node_modules && npm ci",
"test:unit": "vitest --config config/vite/vite.config.mts",
"test:unit:coverage": "npm run --silent test:unit -- --coverage",
"test:unit:ui": "npm run --silent test:unit -- --ui",
"update:package-versions": "./scripts/npm/updatePackageVersions.mjs && npm run --silent reinstall",
"validate:environment": "npm-run-all --silent --parallel validate:environment:*",
"validate:environment:symlinks": "./scripts/npm/validateEnvironmentSymlinks.mjs",
"validate:environment:versions": "./scripts/npm/validateEnvironmentVersions.mjs",
"validate:formatting": "prettier --check --cache --no-editorconfig .",
"validate:linting:eslint": "eslint-config-prettier src/RollbarClient.mts",
"validate:types": "attw --ignore-rules no-resolution --pack ."
},
"bundleDependencies": [
"error-stack-parser",
"just-extend"
],
"devDependencies": {
"@arethetypeswrong/cli": "0.12.2",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@vitest/coverage-v8": "0.34.6",
"@vitest/ui": "0.34.6",
"error-stack-parser": "2.1.4",
"eslint": "8.51.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-regexp": "2.0.0",
"eslint-plugin-unicorn": "48.0.1",
"happy-dom": "12.9.1",
"just-extend": "6.2.0",
"npm-run-all": "4.1.5",
"prettier": "3.0.3",
"typescript": "5.2.2",
"vite": "4.5.0",
"vitest": "0.34.6"
}
}