-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 882 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 882 Bytes
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
{
"name": "angular-error-logging",
"description": "Log frontend errors and send them to the backend server.",
"license": "MIT",
"version": "0.0.2",
"peerDependencies": {
"@angular/common": "^6.0.0-rc.0 || ^6.0.0",
"@angular/core": "^6.0.0-rc.0 || ^6.0.0"
},
"dependencies": {
"error-stack-parser": "^2.0.2",
"rxjs": "^6.0.0",
"tslib": "^1.9.0"
},
"main": "dist/bundles/angular-error-logging.umd.js",
"module": "dist/fesm5/angular-error-logging.js",
"es2015": "dist/fesm2015/angular-error-logging.js",
"esm5": "dist/esm5/angular-error-logging.js",
"esm2015": "dist/esm2015/angular-error-logging.js",
"fesm5": "dist/fesm5/angular-error-logging.js",
"fesm2015": "dist/fesm2015/angular-error-logging.js",
"typings": "dist/angular-error-logging.d.ts",
"metadata": "dist/angular-error-logging.metadata.json",
"sideEffects": false
}