This repository has been archived by the owner on Apr 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
54 lines (54 loc) · 1.52 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
{
"name": "winston-console-formatter",
"version": "1.0.0-beta.3",
"description": "Pretty print console formatter in yaml like style",
"main": "./dist/index.js",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-lab": "^2.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.5.1",
"codecov.io": "^0.1.6",
"lab": "^13.1.0",
"pre-commit": "^1.2.2",
"prettier": "^1.8.2",
"sinon": "^4.1.3"
},
"scripts": {
"build": "babel src --out-dir dist",
"prepublish": "npm run build",
"test": "lab -T node_modules/babel-lab test/suites/*.js -l",
"prettier": "prettier --single-quote --trailing-comma es5 --write ./{src,test}/**/*.js ./README.md",
"codecov": "lab -T node_modules/babel-lab -r lcov | codecov",
"test-cov-html": "lab -T node_modules/babel-lab -r html -o coverage.html"
},
"pre-commit": [
"prettier"
],
"repository": {
"type": "git",
"url": "https://github.com/eugeny-dementev/winston-console-formatter.git"
},
"keywords": [
"winston",
"console",
"formatter",
"config",
"yaml",
"beauty"
],
"author": {
"name": "Eugeny Dementev",
"url": "http://github.com/eugeny-dementev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/eugeny-dementev/winston-console-formatter/issues"
},
"homepage": "https://github.com/eugeny-dementev/winston-console-formatter",
"dependencies": {
"cli-color": "^1.2.0",
"yamlify-object": "^0.5.1",
"yamlify-object-colors": "^1.0.3"
}
}