This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 1.49 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "bootlint-server",
"version": "2.0.0",
"description": "Bootlint Express app",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/twbs/bootlint-server.git"
},
"keywords": [
"bootstrap",
"checker",
"correctness",
"docker",
"express",
"html",
"lint",
"linter",
"server",
"validator",
"validity"
],
"author": "Chris Rebert <[email protected]> (http://chrisrebert.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/twbs/bootlint-server/issues"
},
"homepage": "https://github.com/twbs/bootlint-server#readme",
"scripts": {
"start": "node ./bin/www",
"xo": "xo",
"lint": "npm run xo",
"test": "npm run xo"
},
"dependencies": {
"body-parser": "^1.19.0",
"bootlint": "^1.1.0",
"express": "^4.17.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"xo": "^0.44.0"
},
"engines": {
"node": ">=12"
},
"files": [
"bin/www",
"app.js",
"Dockerfile"
],
"xo": {
"esnext": true,
"space": 4,
"rules": {
"arrow-body-style": "off",
"capitalized-comments": "off",
"comma-dangle": [
"error",
"never"
],
"operator-linebreak": [
"error",
"after"
],
"space-before-function-paren": [
"error",
"never"
],
"unicorn/explicit-length-check": "off",
"unicorn/prefer-module": "off",
"unicorn/prevent-abbreviations": "off"
}
}
}