This file is indexed.

/usr/lib/nodejs/rbush/package.json is in node-rbush 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
  "name": "rbush",
  "version": "2.0.1",
  "description": "High-performance 2D spatial index for rectangles (based on R*-tree with bulk loading and bulk insertion algorithms)",
  "homepage": "https://github.com/mourner/rbush",
  "repository": {
    "type": "git",
    "url": "git://github.com/mourner/rbush.git"
  },
  "keywords": [
    "spatial",
    "tree",
    "search",
    "rectangle",
    "index",
    "math"
  ],
  "author": "Vladimir Agafonkin",
  "license": "MIT",
  "main": "index.js",
  "devDependencies": {
    "benchmark": "^2.1.0",
    "browserify": "^13.0.1",
    "eslint": "^2.10.2",
    "eslint-config-mourner": "^2.0.1",
    "faucet": "0.0.1",
    "istanbul": "~0.4.3",
    "tape": "^4.5.1",
    "uglify-js": "^2.6.4"
  },
  "scripts": {
    "test": "eslint index.js test/test.js && node test/test.js | faucet",
    "perf": "node ./debug/perf.js",
    "cov": "istanbul cover test/test.js -x test/test.js",
    "build": "browserify index.js -s rbush -o rbush.js",
    "build-min": "browserify index.js -s rbush | uglifyjs -c warnings=false -m > rbush.min.js",
    "prepublish": "npm run build && npm run build-min"
  },
  "eslintConfig": {
    "extends": "mourner",
    "rules": {
      "new-cap": 0,
      "consistent-return": 0
    }
  },
  "dependencies": {
    "quickselect": "^1.0.0"
  }
}