-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "loog",
"version": "1.8.0",
"description": "Just what the world needs: Another logging library for Node.js",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha",
"test:debug": "nyc --reporter=html --reporter=text mocha --inspect-brk",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"release": "standard-version",
"generate-docs": "node_modules/.bin/jsdoc -c jsdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/palulabs/loog.git"
},
"keywords": [
"log",
"logging",
"logger"
],
"author": "Israel Roldan ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/palulabs/loog/issues"
},
"homepage": "https://github.com/palulabs/loog#readme",
"dependencies": {
"chalk": "^2.0.1"
},
"devDependencies": {
"assertly": "^1.0.2",
"assertly-sinon": "^1.0.1",
"boxen": "^1.0.0",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^2.0.0",
"jsdoc": "^3.5.5",
"minami": "^1.2.3",
"mocha": "^4.1.0",
"nyc": "^11.0.3",
"sinon": "^4.1.3",
"standard-version": "^4.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}