-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
103 lines (103 loc) · 2.53 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "chappe",
"description": "Developer Docs builder. Write guides in Markdown and references in API Blueprint. Comes with a built-in search engine.",
"version": "1.9.5",
"homepage": "https://github.com/crisp-oss/chappe",
"license": "MIT",
"bin": {
"chappe": "bin/chappe.js"
},
"author": {
"name": "Valerian Saliou",
"email": "[email protected]",
"url": "https://valeriansaliou.name/"
},
"contributors": [
{
"name": "Baptiste Jamin",
"url": "https://jam.in/"
}
],
"repository": {
"type": "git",
"url": "git://github.com/crisp-oss/chappe.git"
},
"bugs": {
"url": "https://github.com/crisp-oss/chappe/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/crisp-oss/chappe/blob/master/LICENSE"
}
],
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"dev": "./bin/chappe.js serve --example=acme-docs",
"build": "./bin/chappe.js build --example=acme-docs",
"test": "./bin/chappe.js lint --example=acme-docs"
},
"dependencies": {
"babel-preset-es2015": "6.9.x",
"ora": "5.4.x",
"del": "6.0.x",
"glob": "7.2.x",
"compass-importer": "0.4.x",
"node-sass": "7.0.x",
"gulp": "4.0.x",
"gulp-connect": "5.7.x",
"gulp-bower": "0.0.15",
"gulp-file": "0.4.x",
"gulp-jade": "1.1.x",
"gulp-babel": "6.1.x",
"gulp-sass": "5.1.x",
"gulp-sass-variables": "1.2.x",
"gulp-sitemap": "8.0.x",
"gulp-inline-image": "1.0.x",
"gulp-ogimage": "1.0.x",
"gulp-concat": "2.6.x",
"gulp-cssmin": "0.2.x",
"gulp-uglify": "3.0.x",
"gulp-header": "2.0.x",
"gulp-rename": "2.0.x",
"gulp-replace": "1.1.x",
"gulp-pug-lint": "0.1.x",
"gulp-sass-lint": "1.4.x",
"gulp-jshint": "2.1.x",
"gulp-jscs": "4.1.x",
"gulp-sizereport": "1.2.x",
"gulp-notify": "4.0.x",
"gulp-noop": "1.0.x",
"jshint": "2.13.x",
"marked": "4.0.x",
"markdown-toc": "1.2.x",
"drafter.js": "3.2.x",
"feed": "4.2.x",
"minisearch": "3.1.x",
"slug": "5.2.x",
"trunc-text": "1.0.x",
"escape-html": "1.0.x",
"http-status-codes": "2.2.x",
"merge-stream": "2.0.x",
"lodash": "4.17.x",
"yargs": "4.8.x",
"@tommoor/remove-markdown": "0.3.x"
},
"keywords": [
"docs",
"documentation",
"api-documentation",
"documentation-tool",
"docs-generator",
"developer-documentation",
"developer-tool",
"markdown",
"blueprint",
"developer",
"api-rest",
"github-pages",
"cloudflare-pages"
]
}