This file is indexed.

/usr/lib/nodejs/cpr/package.json is in node-cpr 2.0.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
  "name": "cpr",
  "description": "cp -R",
  "author": "Dav Glass <davglass@gmail.com>",
  "version": "2.0.0",
  "dependencies": {
    "graceful-fs": "^4.1.5",
    "minimist": "^1.2.0",
    "mkdirp": "~0.5.1",
    "rimraf": "^2.5.4"
  },
  "main": "./lib/index.js",
  "bin": "./bin/cpr",
  "devDependencies": {
    "istanbul": "~0.4.4",
    "jenkins-mocha": "^3.0.0",
    "jshint": "^2.9.2",
    "yui-lint": "~0.2.0"
  },
  "contributors": [
    "soyuka <soyuka@gmail.com>",
    "fresheneesz <bitetrudpublic@gmail.com>",
    "silverwind <me@silverwind.io>",
    "Peter deHaan <peter@deseloper.com>",
    "AndreĢ Cruz <andremiguelcruz@msn.com>",
    "Brian J Brennan <brianloveswords@gmail.com>",
    "Elijah Insua <tmpvar@gmail.com>",
    "Jonny Reeves <github@jonnyreeves.co.uk>",
    "Lydie Danet <lydie@happinov.fr>"
  ],
  "keywords": [
    "copy",
    "recursive",
    "cp -r",
    "cp"
  ],
  "scripts": {
    "pretest": "jshint --config ./node_modules/yui-lint/jshint.json ./lib/",
    "windows-test": "jenkins-mocha ./tests/full.js",
    "test": "jenkins-mocha ./tests/full.js",
    "posttest": "istanbul check-coverage"
  },
  "bugs": {
    "url": "http://github.com/davglass/cpr/issues"
  },
  "license": "BSD-3-Clause",
  "repository": {
    "type": "git",
    "url": "http://github.com/davglass/cpr.git"
  }
}