This file is indexed.

/usr/lib/nodejs/falafel/package.json is in node-falafel 2.1.0-3.

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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
  "name": "falafel",
  "description": "transform the ast on a recursive walk",
  "version": "2.1.0",
  "repository": {
    "type": "git",
    "url": "git://github.com/substack/node-falafel.git"
  },
  "main": "index.js",
  "keywords": [
    "ast",
    "burrito",
    "source",
    "syntax",
    "traversal",
    "tree"
  ],
  "directories": {
    "example": "example",
    "test": "test"
  },
  "scripts": {
    "coverage": "covert test/*.js",
    "test": "node --harmony test/bin/run.js test/*.js"
  },
  "dependencies": {
    "acorn": "^4.0.4",
    "lodash.foreach": "^4.15.0",
    "isarray": "0.0.1"
  },
  "devDependencies": {
    "acorn-jsx": "^3.0.0",
    "covert": "^1.1.0",
    "glob": "^6.0.4",
    "tape": "^4.0.0"
  },
  "engines": {
    "node": ">=4.0.0"
  },
  "license": "MIT",
  "author": {
    "email": "mail@substack.net",
    "name": "James Halliday",
    "url": "http://substack.net"
  },
  "testling": {
    "browsers": {
      "chrome": [
        "20.0"
      ],
      "firefox": [
        "10.0",
        "15.0"
      ],
      "iexplore": [
        "6.0",
        "7.0",
        "8.0",
        "9.0"
      ],
      "opera": [
        "12.0"
      ],
      "safari": [
        "5.1"
      ]
    },
    "files": "test/*.js"
  }
}