forked from eggjs/egg-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.41 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
{
"name": "egg-logger",
"version": "2.0.2",
"description": "egg logger",
"main": "index.js",
"dependencies": {
"chalk": "^2.4.1",
"circular-json": "0.5.5",
"debug": "^2.6.9",
"depd": "^1.1.2",
"iconv-lite": "^0.4.24",
"mkdirp": "^0.5.1",
"utility": "^1.15.0"
},
"devDependencies": {
"@types/node": "^10.3.4",
"autod": "^3.0.1",
"beautify-benchmark": "^0.2.4",
"benchmark": "^2.1.4",
"coffee": "^5.1.0",
"egg-bin": "^1.11.1",
"egg-ci": "^1.8.0",
"eslint": "^5.6.0",
"eslint-config-egg": "^7.1.0",
"heapdump": "^0.3.9",
"ko-sleep": "^1.0.3",
"koa": "^1.6.2",
"mm": "^2.4.1",
"mz-modules": "^2.1.0",
"rimraf": "^2.6.2",
"should": "^13.2.3",
"supertest": "^3.3.0",
"ts-node": "^7.0.1",
"typescript": "^2.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/eggjs/egg-logger.git"
},
"homepage": "https://github.com/eggjs/egg-logger",
"author": "fengmk2 <[email protected]> (https://fengmk2.com)",
"scripts": {
"autod": "autod",
"lint": "eslint lib test *.js",
"test": "npm run lint && egg-bin test",
"cov": "egg-bin cov",
"ci": "npm run lint && npm run cov"
},
"typings": "index.d.ts",
"engines": {
"node": ">= 4.0.0"
},
"files": [
"index.js",
"index.d.ts",
"lib"
],
"ci": {
"version": "6, 8, 10",
"license": true
},
"license": "MIT"
}