This file is indexed.

/usr/lib/nodejs/cson-parser/package.json is in node-cson-parser 1.3.4-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
{
  "name": "cson-parser",
  "version": "1.3.4",
  "description": "Safe parsing of CSON files",
  "license": "BSD-3-Clause",
  "main": "lib/cson-parser.js",
  "homepage": "https://github.com/groupon/cson-parser",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/groupon/cson-parser"
  },
  "bugs": {
    "url": "https://github.com/groupon/cson-parser/issues"
  },
  "scripts": {
    "build": "rm -rf lib && coffee --no-header -cbo lib src",
    "pretest": "npm run build",
    "test": "mocha",
    "posttest": "nlm verify",
    "watch": "coffee --no-header -wcbo lib src & nodemon -w lib -w test -e coffee,js,json -x \"mocha\""
  },
  "nlm": {
    "license": {
      "files": [
        "src"
      ]
    }
  },
  "dependencies": {
    "coffee-script": "^1.10.0"
  },
  "devDependencies": {
    "assertive": "^2.0.0",
    "mocha": "^2.0.0",
    "nlm": "^2.0.0",
    "nodemon": "^1.0.0"
  },
  "author": {
    "name": "Groupon",
    "email": "opensource@groupon.com"
  },
  "keywords": [
    "cson",
    "parser"
  ],
  "files": [
    "*.js",
    "lib"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org"
  }
}