-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
97 lines (97 loc) · 2.62 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
{
"name": "angular2-logger",
"version": "0.5.1",
"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",
"dependencies": {},
"devDependencies": {
"rimraf": "^2.5.2",
"tslint": "4.5.1",
"typescript": "2.2.1",
"typings": "^2.0.0",
"uglify-js": "^2.6.2",
"@angular/common": "2.4.9",
"@angular/compiler": "2.4.9",
"@angular/core": "2.4.9",
"@angular/platform-browser": "2.4.9",
"@angular/platform-browser-dynamic": "2.4.9",
"core-js": "^2.4.1",
"rxjs": "5.2.0",
"systemjs": "0.20.9",
"zone.js": "^0.8.0"
},
"peerDependencies": {
"@angular/common": "2.4.5",
"@angular/compiler": "2.4.5",
"@angular/core": "2.4.5",
"@angular/platform-browser": "2.4.5",
"@angular/platform-browser-dynamic": "2.4.5"
},
"main": "core.js"
}