-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.14 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
{
"name": "lazy-logger",
"version": "0.0.0-semantically-released",
"description": "a simple wrapper for winston and winston-daily-rotate-file that i use as a logger for fast prototyping. Ideal for lazy people.",
"main": "src/index.js",
"scripts": {
"commit": "git-cz",
"test": "mocha src/index.test.js -w",
"test:single": "mocha src/index.test.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"author": "Christos Petropoulos <chrispetropoulos91@gmail.com>",
"license": "MIT",
"dependencies": {
"winston": "^2.3.1",
"winston-daily-rotate-file": "^1.4.6"
},
"devDependencies": {
"chai": "^4.0.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"mocha": "^3.4.2",
"semantic-release": "^6.3.6"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/slysterous/lazy-logger.git"
},
"bugs": {
"url": "https://github.com/slysterous/lazy-logger/issues"
},
"homepage": "https://github.com/slysterous/lazy-logger#readme"
}