-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "angular-logger2",
"version": "1.1.0",
"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": "[email protected]",
"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": "^6.0.3",
"moment": "^2.22.2",
"sprintf-js": "^1.1.1"
},
"devDependencies": {
"awesome-typescript-loader": "5.0.0",
"rimraf": "2.6.2",
"rxjs": "^6.2.0",
"typescript": "2.9.1",
"webpack": "4.10.2",
"webpack-cli": "^3.0.1",
"zone.js": "0.8.26"
}
}