-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
47 lines (47 loc) · 923 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
44
45
46
47
{
"name": "raml2md",
"description": "RAML to Markdown documentation generator",
"version": "4.0.0",
"author": {
"name": "Kevin Renskers",
"email": "info@mixedcase.nl"
},
"bugs": {
"url": "https://github.com/raml2html/raml2md/issues"
},
"dependencies": {
"commander": "2.9.x",
"nunjucks": "2.5.x",
"raml2obj": "4.0.x"
},
"devDependencies": {
"eslint": "3.11.x",
"eslint-config-loopwerk": "6.0.x"
},
"homepage": "https://github.com/raml2html/raml2md",
"keywords": [
"RAML"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/raml2html/raml2md.git"
},
"preferGlobal": true,
"scripts": {
"lint": "eslint .",
"lintfix": "eslint . --fix"
},
"bin": {
"raml2md": "./bin/raml2md"
},
"files": [
"index.js",
"bin/raml2md",
"lib"
],
"engines": {
"node": ">=4"
}
}