forked from raml2html/raml2html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.07 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
{
"name": "raml2html",
"description": "RAML to HTML documentation generator",
"version": "4.0.6",
"author": {
"name": "Kevin Renskers",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/raml2html/raml2html/issues"
},
"dependencies": {
"commander": "2.9.x",
"marked": "0.3.x",
"minimize": "2.0.x",
"nunjucks": "2.5.x",
"nunjucks-markdown": "2.0.x",
"raml2obj": "4.0.x"
},
"devDependencies": {
"eslint": "3.11.x",
"eslint-config-loopwerk": "6.0.x",
"glob": "7.1.1"
},
"homepage": "https://github.com/raml2html/raml2html",
"keywords": [
"RAML"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/raml2html/raml2html.git"
},
"preferGlobal": true,
"scripts": {
"examples": "node examples/render-all-examples.js",
"lint": "eslint .",
"lintfix": "eslint . --fix"
},
"bin": {
"raml2html": "./bin/raml2html"
},
"files": [
"index.js",
"bin/raml2html",
"lib"
],
"engines": {
"node": ">=4"
}
}