-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.35 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
{
"name": "@everymundo/simple-logr",
"version": "2.3.3",
"description": "A very simplistic logger that allows one to avoid using the console.log directly allowing stubbing and better linting.",
"main": "index.js",
"scripts": {
"cover": "LOG_LEVEL=trace nyc -x test --reporter=lcov --reporter=text mocha test --recursive",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"check-lint": "standard *js test/**js",
"fix-lint": "standard --fix **js test/**js",
"test": "LOG_LEVEL=trace mocha --recursive $@",
"test-watch": "LOG_LEVEL=trace mocha --recursive -w"
},
"config": {
"ghooks": {
"pre-push": "npm run check-lint && npm run cover && npm run check-coverage"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/EveryMundo/simple-logr.git"
},
"keywords": [
"nodejs",
"logger"
],
"author": "Daniel Santana",
"license": "MIT",
"bugs": {
"url": "https://github.com/EveryMundo/simple-logr/issues"
},
"homepage": "https://github.com/EveryMundo/simple-logr#readme",
"devDependencies": {
"@everymundo/cleanrequire": "^1.2.1",
"chai": "^4.3.8",
"ghooks": "^2.0.4",
"mocha": "^10.2.0",
"nyc": "^15.0.0",
"sinon": "^16.0.0",
"standard": "^17.1.0"
},
"dependencies": {
"pino": "^8.15.1"
}
}