-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
69 lines (69 loc) · 1.99 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
{
"name": "@exceptionless/browser",
"version": "3.0.0-dev",
"description": "JavaScript client for Exceptionless",
"author": {
"name": "exceptionless",
"url": "https://exceptionless.com"
},
"keywords": [
"exceptionless",
"error",
"feature",
"logging",
"tracking",
"reporting",
"browser"
],
"repository": {
"url": "git://github.com/exceptionless/Exceptionless.JavaScript.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/exceptionless/Exceptionless.JavaScript/issues"
},
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.bundle.min.js",
"jsdelivr": "dist/index.bundle.min.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"moduleNameMapper": {
"^@exceptionless/(.*)$": "<rootDir>/../$1/src"
},
"preset": "ts-jest",
"resolver": "jest-ts-webcompat-resolver",
"testEnvironment": "jsdom"
},
"scripts": {
"build": "tsc -p tsconfig.json && esbuild src/index.ts --bundle --sourcemap --target=es2022 --format=esm --outfile=dist/index.bundle.js && esbuild src/index.ts --bundle --minify --sourcemap --target=es2022 --format=esm --outfile=dist/index.bundle.min.js",
"watch": "tsc -p ../core/tsconfig.json -w --preserveWatchOutput & tsc -p tsconfig.json -w --preserveWatchOutput & esbuild src/index.ts --bundle --sourcemap --target=es2022 --format=esm --watch --outfile=dist/index.bundle.js",
"test": "jest",
"test:watch": "jest --watch"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"esbuild": "^0.20.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-ts-webcompat-resolver": "^1.0.0",
"ts-jest": "^29.1.2"
},
"dependencies": {
"@exceptionless/core": "3.0.0-dev",
"stacktrace-js": "^2.0.2"
}
}