This file is indexed.

/usr/lib/nodejs/hawk/package.json is in node-hawk 6.0.1+dfsg-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
{
  "name": "hawk",
  "description": "HTTP Hawk Authentication Scheme",
  "version": "6.0.1",
  "author": "Eran Hammer <eran@hammer.io> (http://hueniverse.com)",
  "repository": "git://github.com/hueniverse/hawk",
  "main": "lib/index.js",
  "browser": "dist/browser.js",
  "keywords": [
    "http",
    "authentication",
    "scheme",
    "hawk"
  ],
  "engines": {
    "node": ">=4.5.0"
  },
  "dependencies": {
    "hoek": "4.x.x",
    "boom": "4.x.x",
    "cryptiles": "3.x.x",
    "sntp": "2.x.x"
  },
  "devDependencies": {
    "babel-cli": "^6.1.2",
    "babel-preset-es2015": "^6.1.2",
    "code": "4.x.x",
    "lab": "11.x.x"
  },
  "babel": {
    "presets": ["es2015"]
  },
  "scripts": {
    "build-client": "mkdir -p dist; babel lib/browser.js --out-file dist/browser.js",
    "prepublish": "npm run-script build-client",
    "test": "lab -a code -t 100 -L",
    "test-cov-html": "lab -a code -r html -o coverage.html"
  },
  "license": "BSD-3-Clause"
}