-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
98 lines (98 loc) · 2.74 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "angular2-logger",
"version": "0.6.0",
"description": "A Log4j inspired Logger for Angular 2.",
"repository": {
"type": "git",
"url": "git+https://github.com/code-chunks/angular2-logger"
},
"scripts": {
"tsc": "tsc",
"typings": "typings",
"uglifyjs": "uglifyjs",
"tslint": "tslint *.ts src/**/*.ts",
"lint": "npm run tslint",
"prepublish": "npm run build",
"clean": "rimraf *.js *.map app/**/*.js app/**/*.map app/**/*.d.ts demos/*/app**/*.js demos/*/app/*.map demos/*/app/*.d.ts dist bundles",
"precompile": "typings install",
"compile": "npm run compile:es5 && npm run compile:sys && npm run compile:es6",
"compile:amd": "tsc -p tsconfig-amd.json",
"compile:sys": "tsc -p tsconfig-sys.json",
"compile:es5": "tsc -p tsconfig-es5.json",
"compile:es6": "tsc -p tsconfig-es6.json",
"compile:es2015": "tsc -p tsconfig-es2015.json",
"pretest": "npm run lint",
"test": "echo tests pending...",
"prebuild": "npm run clean && npm run compile && npm run test",
"build": "npm run minify",
"minify": "uglifyjs -o bundles/angular2-logger.sys.min.js bundles/angular2-logger.sys.js",
"postbuild": "echo Build Successful."
},
"keywords": [
"log",
"angular2",
"logger",
"angular 2",
"angular2-logger",
"console",
"ng2",
"logging",
"logmanager",
"log manager",
"debug",
"trace",
"error",
"info",
"warn",
"warning",
"fatal",
"log4j",
"log4ng",
"log4js",
"typescript",
"ng",
"angular"
],
"author": "Armando Garcia Moran",
"contributors": [
{
"name": "Armando Garcia",
"email": "[email protected]"
},
{
"name": "Juan Hernandez",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/code-chunks/angular2-logger/issues"
},
"homepage": "https://github.com/code-chunks/angular2-logger#readme",
"devDependencies": {
"typescript": "~2.5.3",
"@angular/common": "^5.1.2",
"@angular/compiler": "^5.1.2",
"@angular/compiler-cli": "^5.1.2",
"@angular/core": "^5.1.2",
"@angular/platform-browser": "^5.1.2",
"@angular/platform-browser-dynamic": "^5.1.2",
"core-js": "^2.4.1",
"rimraf": "^2.5.2",
"rxjs": "5.5.0",
"systemjs": "0.19.41",
"tslint": "4.5.1",
"typings": "^2.0.0",
"uglify-js": "^2.6.2",
"zone.js": "^0.8.4"
},
"peerDependencies": {
"@angular/common": "^4.0.2 || ^5.0.0",
"@angular/compiler": "^4.0.2 || ^5.0.0",
"@angular/core": "^4.0.2 || ^5.0.0",
"@angular/platform-browser": "^4.0.2 || ^5.0.0",
"@angular/platform-browser-dynamic": "^4.0.2 || ^5.0.0"
},
"main": "./dist/cjs/core.js",
"module": "./dist/umd/core.js"
}