UNPKG

1.97 kBJSONView Raw
1{
2 "name": "ydoc",
3 "version": "4.0.4",
4 "description": "基于 Markdown 的静态站点生成工具",
5 "scripts": {
6 "test": "mocha --reporter spec --bail --recursive",
7 "commet": "node commetparser/app.js"
8 },
9 "keywords": [
10 "doc",
11 "docs",
12 "document",
13 "documents",
14 "documentation",
15 "markdown",
16 "build",
17 "fe",
18 "front-end",
19 "js"
20 ],
21 "homepage": "https://ydoc.ymfe.org/",
22 "main": "src/index.js",
23 "bin": {
24 "ydoc": "bin/ydoc"
25 },
26 "repository": {
27 "type": "git",
28 "url": "git@github.com:YMFE/ydoc.git"
29 },
30 "engines": {
31 "node": ">=7.6.0"
32 },
33 "license": "Apache2.0",
34 "dependencies": {
35 "bash-color": "0.0.4",
36 "cheerio": "^0.20.0",
37 "chokidar": "^2.0.0",
38 "debug": "*",
39 "fs-extra": "^5.0.0",
40 "growl": "~1.7.0",
41 "he": "^1.1.1",
42 "koa": "^2.4.1",
43 "koa-static": "^4.0.2",
44 "markdown-it": "^8.4.0",
45 "noox": "^0.1.2",
46 "ora": "^1.3.0",
47 "prismjs": "^1.14.0",
48 "tiny-lr": "0.0.5",
49 "underscore": "^1.8.3",
50 "watch": "~0.9.0",
51 "yargs": "^10.0.3",
52 "ydoc-plugin-copy": "0.0.1",
53 "ydoc-plugin-demo": "^1.0.0",
54 "ydoc-plugin-execution-time": "^1.0.0",
55 "ydoc-plugin-import-asset": "^1.0.1",
56 "ydoc-plugin-search": "^1.1.1"
57 },
58 "devDependencies": {
59 "ghooks": "^2.0.0",
60 "mocha": "^4.1.0",
61 "node-sass": "^4.7.2",
62 "rewire": "^3.0.2",
63 "validate-commit-msg": "^2.12.2"
64 },
65 "config": {
66 "ghooks": {
67 "commit-msg": "validate-commit-msg"
68 },
69 "validate-commit-msg": {
70 "types": [
71 "feat",
72 "fix",
73 "docs",
74 "test",
75 "chore",
76 "refactor",
77 "opti"
78 ],
79 "warnOnFail": false,
80 "maxSubjectLength": 100,
81 "subjectPattern": ".+",
82 "subjectPatternErrorMsg": "please input meesage!",
83 "helpMessage": "Commit message error, \n Please see: https://github.com/conventional-changelog-archived-repos/validate-commit-msg"
84 }
85 }
86}