This file is indexed.

/usr/lib/nodejs/grunt-webpack/package.json is in node-grunt-webpack 3.0.2-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
60
61
62
63
64
65
66
67
68
{
  "name": "grunt-webpack",
  "description": "Use webpack with grunt.",
  "version": "3.0.2",
  "homepage": "https://github.com/webpack-contrib/grunt-webpack",
  "author": {
    "name": "Tobias Koppers @sokra"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:webpack-contrib/grunt-webpack.git"
  },
  "bugs": {
    "url": "https://github.com/webpack-contrib/grunt-webpack/issues"
  },
  "engines": {
    "node": ">=4"
  },
  "files": [
    "src",
    "tasks"
  ],
  "peerDependencies": {
    "webpack": "^2.1.0-beta || ^2.2.0-rc || 2 || 3"
  },
  "license": "MIT",
  "keywords": [
    "gruntplugin"
  ],
  "scripts": {
    "lint": "eslint src tasks",
    "preversion": "npm test",
    "test": "npm run lint && npm run test-only",
    "test-coverage": "nyc --reporter=json --reporter=text npm run test-only",
    "test-only": "ava"
  },
  "devDependencies": {
    "ava": "^0.20.0",
    "babel-core": "^6.17.0",
    "babel-loader": "^7.0.0",
    "babel-preset-latest": "^6.16.0",
    "eslint": "^4.2.0",
    "fs-extra": "^3.0.1",
    "glob": "^7.0.5",
    "grunt": "^1.0.0",
    "nyc": "^11.0.3",
    "webpack": "^3.0.0"
  },
  "dependencies": {
    "deep-for-each": "^1.0.5",
    "lodash": "^4.7.0"
  },
  "ava": {
    "files": [
      "**/tests/**/*.js",
      "!**/utils/**/*",
      "!**/fixtures/**/*",
      "!**/tmp/**/*"
    ]
  },
  "nyc": {
    "all": true,
    "include": [
      "src/",
      "tasks/"
    ]
  }
}