This file is indexed.

/usr/lib/nodejs/sdp-transform/package.json is in node-sdp-transform 1.4.0-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
{
  "name": "sdp-transform",
  "description": "A simple parser/writer for the Session Description Protocol",
  "author": "Eirik Albrigtsen <analsandblaster@gmail.com>",
  "version": "1.4.0",
  "stability": "unstable",
  "repository": {
    "type": "git",
    "url": "clux/sdp-transform"
  },
  "keywords": [
    "sdp",
    "webrtc",
    "serializer"
  ],
  "main": "./lib/",
  "bin": {
    "sdp-verify": "./checker.js"
  },
  "scripts": {
    "test": "nodeunit --reporter=verbose test/*.js",
    "coverage": "jscoverage lib && SDP_TRANSFORM_COV=1 nodeunit --reporter=lcov test",
    "coveralls": "npm run coverage | coveralls"
  },
  "dependencies": {},
  "devDependencies": {
    "coveralls": "^2.11.1",
    "jscoverage": "^0.5.5",
    "nodeunit": "^0.9.0"
  },
  "bugs": {
    "url": "http://github.com/clux/sdp-transform/issues"
  },
  "license": "MIT"
}