Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json - github.com/twbs/bootlint-server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: acadb8f89aa20ba1ebf4ec56eaf1961ae30cfb60 (plain)
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 <code@rebertia.com> (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"
    }
  }
}