-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.25 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
55
{
"name": "bunyan-debug-filter",
"version": "2.0.0",
"description": "Bunyan logging with namespaces and log filtering using the DEBUG environment variable",
"main": "index.js",
"scripts": {
"lint": "eslint --fix ./",
"cover": "nyc -r text-summary -r html -- npm run test:only",
"cover:show": "open \"file://$PWD/coverage/index.html\"",
"test": "npm run cover",
"test:only": "NODE_ENV=test mocha -R spec 'spec/**/*.spec.js'",
"test:watch": "npm run test:only -- -w"
},
"keywords": [
"bunyan",
"debug",
"logging",
"logs",
"filtering"
],
"author": "Matt Dunlap <[email protected]>",
"license": "MIT",
"dependencies": {
"bunyan": "^1.8.15"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint-config-leankit": "^6.0.0",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^14.0.1",
"sinon-chai": "^3.7.0"
},
"nyc": {
"all": true,
"instrument": true,
"sourceMap": false,
"reporter": [
"html",
"text-summary"
],
"exclude": [
"configs",
"coverage",
"tasks",
"spec",
"spec-helpers",
"**/*.spec.js",
"**/.eslintrc.js"
]
}
}