This file is indexed.

/usr/lib/nodejs/zipfile/package.json is in node-zipfile 0.5.11+ds-2ubuntu1.

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
38
39
40
41
42
43
{
  "name"          : "zipfile",
  "version"       : "0.5.11",
  "main"          : "./lib/index.js",
  "description"   : "C++ library for handling zipfiles in node",
  "keywords"      : ["zipfile", "uncompress", "unzip", "zlib"],
  "url"           : "http://github.com/mapbox/node-zipfile",
  "repository" : {
           "type" : "git",
           "url"  : "git://github.com/mapbox/node-zipfile.git"
  },
  "author"        : "Dane Springmeyer <dane@dbsgeo.com>",
  "contributors"  : [],
  "licenses"      : ["BSD"],
  "dependencies"  : {
    "nan": "~2.4.0",
    "node-pre-gyp": "~0.6.30"
  },
  "devDependencies": {
    "mocha": "~2.3.3",
    "mkdirp": "~0.5.1",
    "aws-sdk": "2.x",
    "queue-async":"~1.2.1"
  },
  "bundledDependencies": [
      "node-pre-gyp"
  ],
  "bin"           : {
    "unzip.js"    : "./bin/unzip.js"
  },
  "scripts"       : {
    "prepublish": "npm ls",
    "test"        : "mocha -R spec",
    "install"     : "node-pre-gyp install --fallback-to-build"
  },
  "binary": {
    "module_name" : "zipfile",
    "module_path" : "./lib/binding",
    "host"        : "https://mapbox-node-binary.s3.amazonaws.com",
    "remote_path" : "./{name}/v{version}/{toolset}/",
    "package_name": "{node_abi}-{platform}-{arch}.tar.gz"
  }
}