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: 10aad6c0e3a65a642887d175371fedcbcd78cd9a (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
{
  "name": "bootlint-server",
  "version": "1.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": "^0.16.8",
    "debug": "^4.1.1",
    "express": "^4.17.1",
    "morgan": "^1.9.1"
  },
  "devDependencies": {
    "xo": "^0.25.3"
  },
  "engines": {
    "node": ">=8"
  },
  "files": [
    "bin/www",
    "app.js",
    "Dockerfile"
  ],
  "xo": {
    "esnext": true,
    "space": 4,
    "rules": {
      "capitalized-comments": "off",
      "unicorn/explicit-length-check": "off"
    }
  }
}