-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "herodotus",
"version": "3.1.0",
"description": "Package aware bunyan logger",
"main": "index.js",
"dependencies": {
"@537/bunyan": "^2.0.2",
"async": "^2.6.0",
"bunyan-debug-stream": "^1.0.8",
"chalk": "^2.3.2",
"herodotus-transport": "^0.1.1",
"pkginfo": "^0.4.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.18.2",
"istanbul": "^0.4.5",
"mocha": "^5.0.4",
"sinon": "^4.4.5"
},
"scripts": {
"preversion": "npm test",
"test": "npm run lint && npm run cover && npm run check-coverage",
"lint": "./node_modules/./.bin/eslint index.js lib/ test/",
"cover": "./node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --recursive test",
"check-coverage": "./node_modules/.bin/istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
"view-coverage": "open ./coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kiernanmcgowan/herodotus.git"
},
"keywords": [
"bunyan",
"logger"
],
"author": "kiernan <[email protected]> (http://537.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kiernanmcgowan/herodotus/issues"
},
"homepage": "https://github.com/kiernanmcgowan/herodotus#readme"
}