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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
| {
| "_args": [
| [
| "bs-logger@0.2.6",
| "/Users/tomas/PAM/PAMapp"
| ]
| ],
| "_development": true,
| "_from": "bs-logger@0.2.6",
| "_id": "bs-logger@0.2.6",
| "_inBundle": false,
| "_integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==",
| "_location": "/bs-logger",
| "_phantomChildren": {},
| "_requested": {
| "type": "version",
| "registry": true,
| "raw": "bs-logger@0.2.6",
| "name": "bs-logger",
| "escapedName": "bs-logger",
| "rawSpec": "0.2.6",
| "saveSpec": null,
| "fetchSpec": "0.2.6"
| },
| "_requiredBy": [
| "/ts-jest"
| ],
| "_resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz",
| "_spec": "0.2.6",
| "_where": "/Users/tomas/PAM/PAMapp",
| "author": {
| "name": "Huafu Gandon",
| "email": "huafu.gandon@gmail.com"
| },
| "bugs": {
| "url": "https://github.com/huafu/bs-logger/issues"
| },
| "dependencies": {
| "fast-json-stable-stringify": "2.x"
| },
| "description": "Bare simple logger for NodeJS",
| "devDependencies": {
| "@commitlint/cli": "7.x",
| "@commitlint/config-conventional": "7.x",
| "@types/jest": "23.x",
| "@types/node": "10.x",
| "conventional-changelog-cli": "2.x",
| "husky": "0.x",
| "jest": "23.x",
| "lint-staged": "7.x",
| "prettier": "1.x",
| "rimraf": "2.x",
| "ts-jest": "23.x",
| "tslint": "5.x",
| "tslint-config-prettier": "1.x",
| "tslint-plugin-prettier": "2.x",
| "typescript": "3.x"
| },
| "engines": {
| "node": ">= 6"
| },
| "files": [
| "dist"
| ],
| "homepage": "https://github.com/huafu/bs-logger#readme",
| "keywords": [
| "bare simple logger",
| "simple logger",
| "simple",
| "logger",
| "typescript",
| "lib",
| "library"
| ],
| "license": "MIT",
| "lint-staged": {
| "linters": {
| "*.{ts,tsx}": [
| "tslint --fix",
| "git add"
| ]
| }
| },
| "main": "dist/index.js",
| "name": "bs-logger",
| "repository": {
| "type": "git",
| "url": "git+https://github.com/huafu/bs-logger.git"
| },
| "scripts": {
| "build": "tsc -p tsconfig.build.json",
| "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
| "clean": "rimraf dist coverage",
| "commitmsg": "commitlint -E GIT_PARAMS",
| "lint": "tslint --project tsconfig.json --format stylish",
| "lint:fix": "tslint --fix --project tsconfig.json",
| "postcommit": "git reset",
| "posttest": "npm run typecheck && npm run lint",
| "postversion": "git push && git push --tags",
| "prebuild": "npm run clean",
| "precommit": "lint-staged",
| "prepare": "npm run build",
| "prepublishOnly": "npm run test",
| "preversion": "npm test",
| "test": "jest --coverage",
| "test:watch": "jest --watch",
| "typecheck": "tsc -p . --noEmit",
| "version": "npm run changelog && git add CHANGELOG.md"
| },
| "types": "dist/index.d.ts",
| "version": "0.2.6"
| }
|
|