-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
74 lines (74 loc) · 1.98 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
{
"name": "@exceptionless/node",
"version": "2.0.0-dev",
"description": "JavaScript client for Exceptionless",
"author": {
"name": "exceptionless",
"url": "https://exceptionless.com"
},
"keywords": [
"exceptionless",
"error",
"feature",
"logging",
"tracking",
"reporting",
"node"
],
"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"
},
"engines": {
"node": ">=18"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"moduleNameMapper": {
"^@exceptionless/(.*)$": "<rootDir>/../$1/src"
},
"preset": "ts-jest",
"resolver": "jest-ts-webcompat-resolver",
"testEnvironment": "node"
},
"scripts": {
"build": "tsc -p tsconfig.json && esbuild src/index.ts --bundle --sourcemap --platform=node --format=esm --outfile=dist/index.bundle.js",
"watch": "tsc -p ../core/tsconfig.json -w --preserveWatchOutput & tsc -p tsconfig.json -w --preserveWatchOutput & esbuild src/index.ts --bundle --platform=node --sourcemap --format=esm --watch --outfile=dist/index.bundle.js",
"test": "jest"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@jest/globals": "^29.4.3",
"@types/node": "^18.14.2",
"@types/node-localstorage": "^1.3.0",
"@types/stack-trace": "^0.0.30",
"esbuild": "^0.17.10",
"jest": "^29.4.3",
"jest-ts-webcompat-resolver": "^1.0.0",
"ts-jest": "^29.0.5"
},
"dependencies": {
"@exceptionless/core": "2.0.0-dev",
"node-localstorage": "^2.2.1",
"stack-trace": "^1.0.0-pre2"
}
}