This file is indexed.

/usr/lib/nodejs/lexical-scope/package.json is in node-lexical-scope 1.2.0+dfsg1-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
50
51
52
53
54
55
{
  "name": "lexical-scope",
  "version": "1.2.0",
  "description": "detect global and local lexical identifiers from javascript source code",
  "main": "index.js",
  "dependencies": {
    "astw": "^2.0.0"
  },
  "devDependencies": {
    "tape": "~2.4.1",
    "brfs": "~0.0.3"
  },
  "scripts": {
    "test": "tape test/*.js"
  },
  "testling": {
    "files": "test/*.js",
    "browsers": [
      "ie/6",
      "ie/7",
      "ie/8",
      "ie/9",
      "ie/10",
      "chrome/20",
      "chrome/latest",
      "firefox/10",
      "firefox/15",
      "firefox/latest",
      "safari/latest",
      "opera/11.0",
      "opera/latest"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/substack/lexical-scope.git"
  },
  "homepage": "https://github.com/substack/lexical-scope",
  "keywords": [
    "ast",
    "variable",
    "name",
    "lexical",
    "local",
    "global",
    "implicit",
    "exported"
  ],
  "author": {
    "name": "James Halliday",
    "email": "mail@substack.net",
    "url": "http://substack.net"
  },
  "license": "MIT"
}