forked from dbfannin/ng2-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.5 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
{
"name": "ng2.logger",
"version": "1.0.6",
"description": "Simple Logger for angular 2",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run clean:dist && npm run lint && ngc && cp ./package.json dist && cp ./README.md dist",
"clean": "rimraf node_modules && rimraf dist",
"clean:dist": "rimraf dist",
"lint": "tslint -c tslint.json 'modules/**/*.ts'",
"prebuild": "npm run clean:dist",
"publish:dist": "npm run build && cd dist && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbfannin/ng2-logger.git"
},
"keywords": [
"angular2",
"logger",
"logging"
],
"author": "David Fannin",
"license": "ISC",
"bugs": {
"url": "https://github.com/dbfannin/ng2-logger/issues"
},
"typings": "./src/ng2-logger.d.ts",
"homepage": "https://github.com/dbfannin/ng2-logger#readme",
"dependencies": {
"@angular/common": "^2.4.7",
"@angular/core": "^2.4.7",
"@angular/http": "^2.4.7",
"moment": "^2.17.1"
},
"devDependencies": {
"@angular/compiler": "^2.4.7",
"@angular/compiler-cli": "^2.4.7",
"@angular/platform-browser": "^2.4.7",
"@angular/platform-browser-dynamic": "^2.4.7",
"@types/jasmine": "^2.5.42",
"@types/node": "^7.0.5",
"@types/source-map": "^0.5.0",
"@types/webpack": "^2.2.5",
"rimraf": "^2.5.4",
"rxjs": "^5.1.0",
"tslint": "^4.4.2",
"typescript": "^2.1.6",
"zone.js": "^0.7.6"
}
}