forked from better-js-logging/angular-logger2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.04 KB
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
{
"name": "angular-logger2",
"version": "1.0.7",
"description": "> A proper logging framework, including advanced patterns and level management",
"main": "dist-commonjs/index.js",
"repository": {
"type": "git",
"url": "https://github.com/better-js-logging/angular-logger2"
},
"keywords": [
"angular",
"logger",
"logging",
"angular-logger2"
],
"author": {
"name": "Benny Bottema",
"email": "benny@bennybottema.com",
"url": "http://www.bennybottema.com"
},
"license": "Apache-2.0",
"scripts": {
"clean": "rimraf dist-umd dist-commonjs dist-esmodule",
"build": "npm run clean && tsc && tsc -m es6 --outDir dist-esmodule && webpack --colors --progress --display-error-details --display-cached"
},
"dependencies": {
"@angular/core": "^5.1.2",
"moment": "^2.20.1",
"sprintf-js": "^1.1.1"
},
"devDependencies": {
"awesome-typescript-loader": "3.1.2",
"rimraf": "2.6.1",
"typescript": "2.3.1",
"webpack": "2.4.1",
"rxjs": "^5.0.1",
"zone.js": "0.8.9"
}
}