forked from raml2html/raml2html
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 948 Bytes
/
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
{
"name": "raml2html",
"description": "RAML to HTML documentation generator",
"version": "2.1.0",
"author": {
"name": "Kevin Renskers",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/kevinrenskers/raml2html/issues"
},
"dependencies": {
"commander": "2.8.x",
"marked": "0.3.x",
"minimize": "1.6.x",
"nunjucks": "1.3.x",
"nunjucks-markdown": "1.0.x",
"q": "1.4.x",
"raml2obj": "2.2.x"
},
"devDependencies": {
"eslint": "1.2.x",
"eslint-config-defaults": "4.2.x",
"eslint-plugin-react": "^3.2.3"
},
"homepage": "https://github.com/kevinrenskers/raml2html",
"keywords": [
"RAML"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/kevinrenskers/raml2html.git"
},
"preferGlobal": "true",
"scripts": {
"lint": "eslint ./"
},
"bin": {
"raml2html": "./bin/raml2html"
}
}