-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
68 lines (68 loc) · 1.76 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "express-wolox-logger",
"version": "4.0.1",
"description": "ExpressJS Wolox Logger",
"main": "index.js",
"scripts": {
"eslint-check": "eslint --print-config .eslintrc.js --ignore-pattern ./.eslintrc.js | eslint-config-prettier-check",
"lint": "eslint \"**/*.js\" --ignore-pattern ./.eslintrc.js",
"lint-diff": "git diff --name-only --cached --relative | grep \\\\.js$ | xargs eslint",
"lint-fix": "eslint \"**/*.js\" --fix --ignore-pattern ./.eslintrc.js",
"pretest": "npm run lint",
"test": "jest --runInBand",
"coverage": "jest --coverage",
"bench": "node lib/benchmarks.js"
},
"repository": {
"type": "git",
"url": "[email protected]:Wolox/express-wolox-logger.git"
},
"keywords": [
"express",
"expressjs",
"logger",
"node",
"nodejs",
"log",
"wolox"
],
"author": "Wolox",
"license": "MIT",
"bugs": {
"url": "https://github.com/Wolox/express-wolox-logger/issues"
},
"homepage": "https://github.com/Wolox/express-wolox-logger#readme",
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.spec.js?(x)"
],
"clearMocks": true
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-diff"
}
},
"dependencies": {
"on-finished": "^2.3.0",
"pino": "^6.4.0",
"pino-pretty": "^4.0.3",
"shortid": "^2.2.14"
},
"devDependencies": {
"body-parser": "^1.19.0",
"eslint": "^6.8.0",
"eslint-config-wolox": "^4.0.0",
"eslint-config-wolox-node": "^3.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"fastbench": "^1.0.1",
"husky": "^4.2.5",
"jest": "^26.1.0",
"os": "^0.1.1",
"prettier": "^1.17.1",
"prettier-eslint": "^9.0.2",
"supertest": "^4.0.2"
}
}