This file is indexed.

/usr/lib/nodejs/base64-js/package.json is in node-base64-js 1.2.3+dfsg-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": "base64-js",
  "version": "1.2.3",
  "description": "Base64 encoding/decoding in pure JS",
  "keywords": [
    "base64"
  ],
  "homepage": "https://github.com/beatgammit/base64-js",
  "bugs": {
    "url": "https://github.com/beatgammit/base64-js/issues"
  },
  "license": "MIT",
  "author": "T. Jameson Little <t.jameson.little@gmail.com>",
  "files": [
    "test",
    "index.js",
    "base64js.min.js"
  ],
  "main": "index.js",
  "repository": {
    "type": "git",
    "url": "git://github.com/beatgammit/base64-js.git"
  },
  "scripts": {
    "build": "browserify -s base64js -r ./ | uglifyjs -m > base64js.min.js",
    "lint": "standard",
    "test": "npm run lint && npm run unit",
    "unit": "tape test/*.js"
  },
  "devDependencies": {
    "benchmark": "^2.1.4",
    "browserify": "^14.0.0",
    "standard": "*",
    "tape": "4.x",
    "uglify-js": "^2.8.29"
  }
}