forked from eggjs/egg-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.38 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
{
"name": "egg-logger",
"version": "1.6.2",
"description": "egg logger",
"main": "index.js",
"dependencies": {
"chalk": "^1.1.3",
"debug": "^2.6.2",
"depd": "^1.1.0",
"iconv-lite": "^0.4.15",
"mkdirp": "^0.5.1",
"utility": "^1.11.0"
},
"devDependencies": {
"@types/node": "^10.3.4",
"autod": "^2.7.1",
"beautify-benchmark": "^0.2.4",
"benchmark": "^2.1.3",
"coffee": "^3.3.0",
"egg-bin": "^1.10.3",
"egg-ci": "^1.5.0",
"eslint": "^3.17.1",
"eslint-config-egg": "^3.2.0",
"heapdump": "^0.3.9",
"ko-sleep": "^1.0.2",
"koa": "^1.3.0",
"mm": "^2.1.0",
"mz-modules": "^2.0.0",
"rimraf": "^2.6.1",
"should": "^11.2.1",
"supertest": "^3.0.0",
"ts-node": "^6.0.5",
"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": "4, 6, 8, 9",
"license": true
},
"license": "MIT"
}