This file is indexed.

/usr/lib/nodejs/jschardet/package.json is in node-jschardet 1.6.0+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
{
    "name": "jschardet",
    "version": "1.6.0",
    "description": "Character encoding auto-detection in JavaScript (port of python's chardet)",
    "main": "src/init",
    "author": "António Afonso",
    "license": "LGPL-2.1+",
    "keywords": ["encoding", "charset"],
    "repository" : {
        "type": "git",
        "url": "https://github.com/aadsm/jschardet.git"
    },
    "directories": {
        "lib": "./lib",
        "test": "./test"
    },
    "dependencies": {},
    "devDependencies": {
        "browserify": "~12.0.1",
        "google-closure-compiler": "20151015.0.0"
    },
    "scripts": {
        "dist-dev": "mkdir -p dist && browserify index.js -s jschardet --detect-globals false -o dist/jschardet.js",
        "dist": "npm run dist-dev && java -jar node_modules/google-closure-compiler/compiler.jar --warning_level QUIET --compilation_level SIMPLE_OPTIMIZATIONS --js dist/jschardet.js > dist/jschardet.min.js"
    },
    "engines": {
        "node": ">=0.1.90"
    }
}