-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 888 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
{
"name": "markserv-contrib-inc.html",
"version": "1.0.2",
"description": "Include one HTML file inside another HTML File",
"repository": "[email protected]:f1lt3r/markserv-contrib-inc.html",
"main": "lib/inc.html.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "f1lt3r",
"license": "LGPL-3.0",
"devDependencies": {
"bluebird": "^3.4.6",
"xo": "^0.17.0"
},
"xo": {
"esnext": true,
"globals": [
"it",
"describe",
"beforeEach"
],
"rules": {
"import/no-dynamic-require": 0,
"no-multi-str": 0,
"no-use-extend-native": 0
},
"overrides": [
{
"files": "**/Markconf.*",
"rules": {
"unicorn/filename-case": [
"error",
{
"case": "pascalCase"
}
]
}
}
]
}
}