This file is indexed.

/usr/lib/nodejs/tap/package.json is in node-tap 11.0.0+ds1-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
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
71
72
73
74
{
  "name": "tap",
  "version": "11.0.0",
  "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)",
  "description": "A Test-Anything-Protocol library",
  "homepage": "http://node-tap.org/",
  "bin": {
    "tap": "bin/run.js"
  },
  "main": "lib/tap.js",
  "engines": {
    "node": ">=4"
  },
  "dependencies": {
    "bind-obj-methods": "^1.0.0",
    "clean-yaml-object": "^0.1.0",
    "supports-color" : "^3",
    "foreground-child": "^1.3.3",
    "fs-exists-cached": "^1.0.0",
    "function-loop": "^1.0.1",
    "glob": "^7.0.0",
    "isexe": "^2.0.0",
    "js-yaml": "^3.10.0",
    "mkdirp": "^0.5.1",
    "own-or": "^1.0.0",
    "own-or-env": "^1.0.0",
    "rimraf": "^2.6.2",
    "signal-exit": "^3.0.0",
    "source-map-support": "^0.4.18",
    "stack-utils": "^1.0.0",
    "tap-mocha-reporter": "^3.0.6",
    "tap-parser": "^7.0.0",
    "tmatch": "^3.1.0",
    "trivial-deferred": "^1.0.1",
    "tsame": "^1.1.2",
    "write-file-atomic": "^2.3.0",
    "yapool": "^1.0.0"
  },
  "optionalDependencies" : {
    "nyc": "^11.3.0",
    "coveralls": "^2.13.3",
    "opener": "^1.4.1"
  },
  "keywords": [
    "assert",
    "tap",
    "test",
    "testing"
  ],
  "license": "ISC",
  "repository": "https://github.com/tapjs/node-tap.git",
  "scripts": {
    "regen-fixtures": "node scripts/generate-test-test.js test-legacy/test/*.js",
    "snap": "TAP_SNAPSHOT=1 node bin/run.js test/*.js",
    "test": "node bin/run.js test/*.js --100 -J --nyc-arg=--include={lib,bin} -c",
    "test-all": "node bin/run.js test/*.js test-legacy/*.js --100 -J --nyc-arg=--include={lib,bin}",
    "unit": "bash scripts/unit.sh",
    "test-legacy": "node bin/run.js test-legacy/*.* --coverage -t3600 --nyc-arg=--include={lib,bin}",
    "smoke": "node bin/run.js --node-arg=test-legacy/test.js test-legacy/test/*.js -j2",
    "posttest": "standard lib test",
    "t": "node bin/run.js test/*.* -sfails.txt",
    "preversion": "npm test",
    "postversion": "npm publish",
    "postpublish": "git push origin --all; git push origin --tags"
  },
  "devDependencies": {
    "standard": "^7.1.2",
    "which": "^1.1.1"
  },
  "files": [
    "bin/*",
    "lib/*"
  ]
}