This file is indexed.

/usr/lib/nodejs/is-object/package.json is in node-is-object 1.0.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
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
{
	"name": "is-object",
	"version": "1.0.1",
	"description": "Checks whether a value is an object",
	"keywords": [],
	"author": "Raynos <raynos2@gmail.com>",
	"repository": "git://github.com/ljharb/is-object.git",
	"main": "index",
	"homepage": "https://github.com/ljharb/is-object",
	"contributors": [
		{
			"name": "Raynos"
		},
		{
			"name": "Jordan Harband",
			"url": "https://github.com/ljharb"
		}
	],
	"bugs": {
		"url": "https://github.com/ljharb/is-object/issues",
		"email": "ljharb@gmail.com"
	},
	"dependencies": {},
	"devDependencies": {
		"tape": "~2.14.0",
		"covert": "~1.0.0",
		"jscs": "~1.6.0"
	},
    "license": "MIT",
	"licenses": [
		{
			"type": "MIT",
			"url": "http://github.com/ljharb/is-object/raw/master/LICENSE"
		}
	],
	"scripts": {
		"test": "npm run lint && node test/index.js && npm run coverage-quiet",
		"coverage": "covert test/index.js",
		"coverage-quiet": "covert test/index.js --quiet",
		"lint": "jscs *.js */*.js"
	},
	"testling": {
		"files": "test/index.js",
		"browsers": [
			"ie/6..latest",
			"firefox/3..6",
			"firefox/16..latest",
			"firefox/nightly",
			"chrome/22..latest",
			"chrome/canary",
			"opera/10.0",
			"opera/11..latest",
			"opera/next",
			"safari/4..latest",
			"ipad/6.0..latest",
			"iphone/6.0..latest"
		]
	}
}