-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "huzzah",
"version": "0.13.0",
"devDependencies": {
"benchmark": "^2.0.0",
"bunyan": "latest",
"coveralls": "^3.0.0",
"documentation": "^5.3.3",
"eslint": "^4.12.1",
"intel": "latest",
"istanbul": "^0.4.2",
"log4js": "latest",
"mocha": "^2.4.3",
"pino": "^4.10.2",
"prettier": "^1.9.1",
"should": "^13.1.3",
"sinon": "^4.1.2",
"winston": "latest"
},
"scripts": {
"api-doc": "documentation build index.js -o API.md -f md -g",
"test": "mocha *.spec.js utils/**/*.spec.js",
"coverage": "istanbul cover _mocha -- *.spec.js utils/**/*.spec.js",
"lint": "eslint --fix *.js utils/**/*.js",
"upload-coveralls": "cat ./coverage/lcov.info | coveralls",
"coveralls": "npm run coverage && npm run upload-coveralls",
"prepublish": "npm run api-doc"
},
"description": "Fastest hierarchical text/json logger",
"main": "./index.js",
"bugs": "https://github.com/btd/huzzah/issues",
"repository": {
"type": "git",
"url": "https://github.com/btd/huzzah.git"
},
"keywords": [
"log",
"logging",
"logger",
"console"
],
"author": "Denis Bardadym <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=6"
}
}