This file is indexed.

/usr/lib/nodejs/eslint-plugin-html/package.json is in node-eslint-plugin-html 3.2.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
{
  "name": "eslint-plugin-html",
  "version": "3.2.1",
  "description": "A ESLint plugin to lint and fix inline scripts contained in HTML files.",
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "https://github.com/BenoitZugmeyer/eslint-plugin-html"
  },
  "homepage": "https://github.com/BenoitZugmeyer/eslint-plugin-html",
  "bugs": "https://github.com/BenoitZugmeyer/eslint-plugin-html/issues",
  "keywords": [
    "eslint-plugin",
    "eslintplugin",
    "eslint",
    "html"
  ],
  "main": "src/index.js",
  "dependencies": {
    "htmlparser2": "^3.8.2",
    "semver": "^5.4.1"
  },
  "devDependencies": {
    "eslint": "^4.0.0",
    "eslint-config-benoitz": "^1.0.0",
    "jest": "^20.0.3",
    "prettier-eslint-cli": "^4.1.0"
  },
  "scripts": {
    "prettier": "git ls-files -- '*.js' | xargs prettier-eslint",
    "validate": "npm run lint && npm run check-format && npm run test",
    "test": "jest",
    "lint": "eslint .",
    "check-format": "test -z \"$(npm run -s prettier -- --list-different)\"",
    "format": "npm run -s prettier -- --write"
  }
}