forked from wdullaer/raml2html-slate-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.59 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
{
"name": "raml2html-slate-theme",
"description": "A raml2html template for rendering RAML to a Slate like layout",
"version": "2.1.3",
"author": {
"name": "Wouter Dullaert",
"email": "[email protected]",
"url": "https://wdullaer.com"
},
"bugs": {
"url": "https://github.com/wdullaer/raml2html-slate-theme/issues"
},
"dependencies": {
"marked": "^0.3.6",
"minimize": "^2.1.0",
"nunjucks": "^3.0.1",
"nunjucks-markdown": "^2.0.1",
"stylus": "^0.54.5"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.8.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "~2.8.0",
"eslint-plugin-node": "~5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^4.0.0",
"nyc": "^11.2.1",
"raml2html": "^6.4.1",
"rewire": "^2.5.2"
},
"homepage": "https://github.com/wdullaer/raml2html-slate-theme",
"keywords": [
"RAML",
"raml2html-theme"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/wdullaer/raml2html-slate-theme.git"
},
"preferGlobal": true,
"files": [
"index.js",
"lib",
"templates"
],
"engines": {
"node": ">=4"
},
"eslintConfig": {
"extends": "standard"
},
"scripts": {
"coverage": "./node_modules/.bin/nyc ./node_modules/mocha/bin/mocha",
"lint": "./node_modules/.bin/eslint lib test",
"mocha": "./node_modules/.bin/mocha",
"prepublishOnly": "npm run test",
"test": "npm run lint && npm run coverage"
}
}