-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "log-defer",
"version": "1.0.1",
"description": "Generate log object compatible with log-defer-viz, https://github.com/hoytech/Log-Defer-Viz",
"keywords": [
"log",
"format",
"formatter"
],
"main": "lib/log-defer.js",
"engines": {
"node": ">=14"
},
"scripts": {
"prepare": "husky install",
"report-coverage": "npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov",
"test": "npx nyc npx mocha",
"test_only": "npx mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ioncache/log-defer.git"
},
"author": "Mark Jubenville <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ioncache/log-defer/issues"
},
"homepage": "https://github.com/ioncache/log-defer",
"devDependencies": {
"chai": "^4.3.4",
"codecov": "^3.8.2",
"husky": "^7.0.4",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.3.1",
"pretty-quick": "^3.1.0",
"q": "^1.5.1"
}
}