-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.63 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": "@workablehr/riviere",
"version": "1.19.0",
"description": "log inbound/outbound HTTP traffic",
"types": "./types/riviere.d.ts",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Workable/riviere.git"
},
"bugs": {
"url": "https://github.com/Workable/riviere/issues"
},
"homepage": "https://github.com/Workable/riviere",
"keywords": [
"logs",
"logging",
"logger",
"http logger",
"http",
"tracing",
"traffic",
"inbound",
"outbound",
"incoming",
"outcoming",
"koa"
],
"scripts": {
"test": "nyc node_modules/mocha/bin/mocha test/**/*Test.js",
"posttest": "nyc report --reporter=html --reporter=lcov",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --print-width 120 --single-quote true --write",
"git add"
]
},
"dependencies": {
"chalk": "^2.4.2",
"flat": "^5.0.2",
"lodash": "^4.17.15",
"passthrough-counter": "^1.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"eslint": "^8.50.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-workable-node": "git+https://github.com/Workable/eslint-config-workable-node.git",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"lint-staged": "^13.1.1",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"prettier": "^1.16.4",
"should": "^13.2.3",
"sinon": "^7.2.7"
},
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"author": ""
}