-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 877 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": "markserv-contrib-mod.markdown",
"version": "1.0.6",
"description": "Serves Markdown files as rendered HTML",
"repository": "[email protected]:f1lt3r/markserv-contrib-mod.markdown",
"main": "lib/mod.markdown.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "f1lt3r",
"license": "GPL-3.0",
"xo": {
"esnext": true,
"globals": [
"it",
"describe",
"beforeEach"
]
},
"dependencies": {
"bluebird": "^3.4.6",
"marked": "^0.3.6"
},
"xo": {
"esnext": true,
"globals": [
"it" ,
"describe",
"beforeEach"
],
"rules": {
"import/no-dynamic-require": 0
},
"overrides": [
{
"files": "**/Markconf.*",
"rules": {
"unicorn/filename-case": ["error", {"case": "pascalCase"}]
}
}
]
}
}