This repository was archived by the owner on Apr 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.62 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.62 KB
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
{
"name": "@vizydrop/logger",
"version": "1.9.3",
"description": "Vizydrop predefined logger based on winston v3",
"main": "index.js",
"scripts": {
"lint": "eslint --quiet .",
"test": "jest",
"run-publish": "yarn lint && yarn test && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vizydrop/logger.git"
},
"keywords": [
"vizydrop",
"logger",
"winston"
],
"author": "Vizydrop Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/vizydrop/logger/issues"
},
"homepage": "https://github.com/vizydrop/logger#readme",
"dependencies": {
"fast-safe-stringify": "^2.0.7",
"on-finished": "^2.3.0",
"on-headers": "^1.0.2",
"triple-beam": "^1.3.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@vizydrop/eslint-config-vizydrop": "^6.0.9",
"eslint": "^6.8.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-lodash-fp": "^2.2.0-a1",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"express": "^4.17.1",
"got": "^10.7.0",
"husky": "^4.2.3",
"jest": "^25.3.0",
"koa": "^2.11.0",
"koa-router": "^8.0.8",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"winston-transport": "^4.3.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}