-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 1.79 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "koa-smplog",
"version": "0.6.0",
"description": "smplogging koa requests",
"main": "index.js",
"scripts": {
"ava": "./node_modules/.bin/ava --watch",
"test": "./node_modules/.bin/nyc ./node_modules/.bin/ava",
"coverage": "open coverage/index.html",
"lint": "./node_modules/.bin/eslint .",
"precommit": "npm run lint",
"prepush": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/finboxio/koa-smplog.git"
},
"keywords": [
"log",
"smplog",
"koa"
],
"author": "finboxio",
"license": "MIT",
"bugs": {
"url": "https://github.com/finboxio/koa-smplog/issues"
},
"homepage": "https://github.com/finboxio/koa-smplog#readme",
"devDependencies": {
"ava": "3.13.0",
"eslint": "7.13.0",
"eslint-config-standard": "16.0.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.1.0",
"husky": "4.3.0",
"intercept-stdout": "0.1.2",
"koa": "1.x",
"koa-mount": "1.x",
"nyc": "15.1.0",
"strip-ansi": "6.0.0",
"supertest": "6.0.1"
},
"dependencies": {
"bytes": "3.1.0",
"chalk": "4.1.0",
"flat": "5.0.2",
"humanize-number": "0.0.2",
"json-stringify-safe": "5.0.1",
"object-assign": "4.1.1",
"passthrough-counter": "1.0.0",
"request": "2.88.2",
"request-intercept": "0.0.5",
"smplog": "0.1.2",
"uid": "2.0.0"
},
"ava": {
"timeout": "20s",
"verbose": true,
"files": [
"test/*unit.js"
],
"source": [
"**/*.js"
]
},
"nyc": {
"check-coverage": true,
"lines": 70,
"statements": 70,
"functions": 70,
"branches": 70,
"reporter": [
"text",
"text-summary",
"html"
],
"exclude": [
"test/",
"**/test",
"node_modules/**"
]
}
}