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

package.json - github.com/twbs/bootlint.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b85e9494b8bf0b076ee5129342201242f152e9b7 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
  "name": "bootlint",
  "version": "1.1.0",
  "description": "HTML linter for Bootstrap projects",
  "license": "MIT",
  "author": "Chris Rebert <code@rebertia.com> (http://chrisrebert.com)",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/twbs/bootlint.git"
  },
  "bugs": {
    "url": "https://github.com/twbs/bootlint/issues"
  },
  "homepage": "https://github.com/twbs/bootlint",
  "scripts": {
    "browserify": "browserify src/bootlint.js | node build/stamp.js > dist/browser/bootlint.js",
    "build": "npm run browserify && npm run minify",
    "dist": "npm run build",
    "eslint": "eslint --cache-location .cache/.eslintcache --report-unused-disable-directives .",
    "lint": "npm run eslint",
    "minify": "terser --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"includeSources,url=bootlint.min.js.map\" --output dist/browser/bootlint.min.js dist/browser/bootlint.js",
    "nodeunit": "nodeunit test",
    "qunit": "node build/phantom.js",
    "nyc": "nyc",
    "test": "npm run eslint && npm run build && npm run nodeunit",
    "test:all": "npm run eslint && npm run build && npm run nodeunit && npm run qunit"
  },
  "dependencies": {
    "binary-search": "^1.3.6",
    "bluebird": "^3.7.2",
    "chalk": "^2.4.2",
    "cheerio": "^0.22.0",
    "commander": "^2.20.3",
    "glob": "^7.1.6",
    "semver": "^6.3.0",
    "void-elements": "^3.1.0"
  },
  "devDependencies": {
    "async": "^3.2.0",
    "browserify": "^16.5.1",
    "eslint": "^5.16.0",
    "jquery": "^3.5.1",
    "node-qunit-phantomjs": "^2.1.1",
    "nodeunit": "^0.11.3",
    "nyc": "^14.1.1",
    "qunit": "^2.10.1",
    "rewire": "github:twbs/rewire#master",
    "sinon": "^7.5.0",
    "terser": "^4.8.0"
  },
  "main": "./src/bootlint.js",
  "bin": {
    "bootlint": "./src/cli-main.js"
  },
  "browser": {
    "binary-search": false,
    "cheerio": "jquery",
    "url": "./src/url.js",
    "./src/cli.js": false,
    "./src/cli-main.js": false,
    "./src/location.js": false
  },
  "nyc": {
    "include": [
      "src/**/*.js"
    ],
    "reporter": [
      "html",
      "lcov",
      "text-summary"
    ]
  },
  "engines": {
    "node": ">=6"
  },
  "files": [
    "dist/browser/*.{js,map}",
    "src/*.js"
  ],
  "keywords": [
    "bootstrap",
    "checker",
    "correctness",
    "html",
    "lint",
    "linter",
    "validator",
    "validity"
  ]
}