This file is indexed.

/usr/lib/nodejs/fined/package.json is in node-fined 1.0.2-2.

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
{
  "name": "fined",
  "version": "1.0.2",
  "description": "Find a file given a declaration of locations",
  "author": "JS CLI Team (https://github.com/js-cli)",
  "contributors": [
    "Takayuki Sato <t110000508260@yahoo.co.jp>",
    "Blaine Bublitz <blaine.bublitz@gmail.com>"
  ],
  "repository": "js-cli/fined",
  "license": "MIT",
  "engines": {
    "node": ">= 0.10"
  },
  "main": "index.js",
  "files": [
    "index.js",
    "LICENSE"
  ],
  "scripts": {
    "lint": "eslint . && jscs index.js test/",
    "pretest": "npm run lint",
    "test": "mocha --async-only",
    "cover": "istanbul cover _mocha --report lcovonly",
    "coveralls": "npm run cover && istanbul-coveralls"
  },
  "dependencies": {
    "expand-tilde": "^1.2.1",
    "lodash.assignwith": "^4.0.7",
    "lodash.isempty": "^4.2.1",
    "lodash.isplainobject": "^4.0.4",
    "lodash.isstring": "^4.0.1",
    "lodash.pick": "^4.2.1",
    "parse-filepath": "^1.0.1"
  },
  "devDependencies": {
    "eslint": "^1.7.3",
    "eslint-config-gulp": "^2.0.0",
    "expect": "^1.19.0",
    "istanbul": "^0.4.3",
    "istanbul-coveralls": "^1.0.3",
    "jscs": "^2.3.5",
    "jscs-preset-gulp": "^1.0.0",
    "mocha": "^2.4.5"
  },
  "keywords": []
}