This file is indexed.

/usr/lib/nodejs/compressible/package.json is in node-compressible 2.0.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
{
  "name": "compressible",
  "description": "Compressible Content-Type / mime checking",
  "version": "2.0.1",
  "contributors": [
    "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
    "Jeremiah Senkpiel <fishrock123@rocketmail.com> (https://searchbeam.jit.su)"
  ],
  "license": "MIT",
  "repository": "jshttp/compressible",
  "keywords": [
    "compress",
    "gzip",
    "mime",
    "content-type"
  ],
  "dependencies": {
    "mime-db": "1.x"
  },
  "devDependencies": {
    "istanbul": "0",
    "mocha": "~1.20.1"
  },
  "engines": {
    "node": ">= 0.6.0"
  },
  "files": [
    "LICENSE",
    "index.js"
  ],
  "scripts": {
    "test": "mocha --reporter spec --bail --check-leaks test/",
    "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot -check-leaks",
    "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot --check-leaks"
  }
}