This file is indexed.

/usr/lib/nodejs/estree-walker/package.json is in node-estree-walker 0.5.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
{
  "name": "estree-walker",
  "description": "Traverse an ESTree-compliant AST",
  "version": "0.5.1",
  "author": "Rich Harris",
  "license": "MIT",
  "typings": "index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/Rich-Harris/estree-walker"
  },
  "main": "dist/estree-walker.umd.js",
  "module": "dist/estree-walker.es.js",
  "jsnext:main": "dist/estree-walker.es.js",
  "scripts": {
    "prepublish": "npm run lint && npm test",
    "build": "rollup -c",
    "test": "mocha test/test.js --compilers js:buble/register",
    "pretest": "npm run build",
    "lint": "eslint src"
  },
  "devDependencies": {
    "buble": "^0.15.2",
    "eslint": "^4.5.0",
    "mocha": "^3.5.0",
    "rollup": "^0.48.0",
    "rollup-plugin-buble": "^0.15.0"
  },
  "files": [
    "src",
    "dist",
    "README.md"
  ]
}