-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
69 lines (69 loc) · 1.64 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
{
"name": "egg-doctools",
"version": "2.9.1",
"description": "Doctools for Egg.js",
"main": "lib/index.js",
"bin": {
"doctools": "bin/doctools.js"
},
"dependencies": {
"common-bin": "^2.7.3",
"cpy": "^7.0.1",
"debug": "^4.1.1",
"egg-utils": "^2.4.0",
"gh-pages": "^2.0.1",
"hexo": "^3.7.1",
"hexo-generator-index": "^0.2.1",
"hexo-generator-tag": "^0.2.0",
"hexo-renderer-less": "^1.0.0",
"hexo-renderer-nunjucks": "^1.0.5",
"hexo-server": "^0.3.2",
"jsdoc": "^3.5.5",
"markdown-it": "^8.4.1",
"markdown-it-replace-link": "^1.0.1",
"markdown-it-toc-and-anchor": "^4.1.2",
"mz": "^2.7.0",
"mz-modules": "^2.1.0",
"resolve": "^1.11.0",
"runscript": "^1.3.0",
"taffydb": "^2.7.3",
"zlogger": "^1.1.0"
},
"devDependencies": {
"autod": "^3.0.1",
"coffee": "^4.1.0",
"egg": "^1.2.1",
"egg-bin": "^4.7.1",
"egg-ci": "^1.8.0",
"eslint": "^5.1.0",
"eslint-config-egg": "^7.0.0",
"supertest": "^3.1.0",
"webstorm-disable-index": "^1.2.0"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"autod": "autod",
"lint": "eslint .",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"ci": "egg-bin pkgfiles --check && npm run lint && sh test/travis.sh && npm run cov",
"pkgfiles": "egg-bin pkgfiles"
},
"ci": {
"version": "8, 10",
"license": true
},
"repository": {
"type": "git",
"url": "[email protected]:eggjs/doctools.git"
},
"author": "popomore <[email protected]>",
"license": "MIT",
"files": [
"lib",
"bin"
]
}