This file is indexed.

/usr/lib/nodejs/sourcemap-codec/package.json is in node-sourcemap-codec 1.4.0-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
{
  "name": "sourcemap-codec",
  "version": "1.4.0",
  "description": "Encode/decode sourcemap mappings",
  "main": "dist/sourcemap-codec.umd.js",
  "module": "dist/sourcemap-codec.es.js",
  "types": "dist/types/sourcemap-codec.d.ts",
  "scripts": {
    "test": "mocha",
    "build": "rm -rf dist && rollup -c && tsc",
    "pretest": "npm run build",
    "prepublish": "npm test",
    "lint": "eslint src",
    "pretest-coverage": "npm run build",
    "test-coverage": "rm -rf coverage/* && istanbul cover --report json node_modules/.bin/_mocha -- -u exports -R spec test/test.js",
    "posttest-coverage": "remap-istanbul -i coverage/coverage-final.json -o coverage/coverage-remapped.json -b dist && remap-istanbul -i coverage/coverage-final.json -o coverage/coverage-remapped.lcov -t lcovonly -b dist && remap-istanbul -i coverage/coverage-final.json -o coverage/coverage-remapped -t html -b dist",
    "ci": "npm run test-coverage && codecov < coverage/coverage-remapped.lcov"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Rich-Harris/sourcemap-codec"
  },
  "keywords": [
    "sourcemap",
    "vlq"
  ],
  "author": "Rich Harris",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Rich-Harris/sourcemap-codec/issues"
  },
  "homepage": "https://github.com/Rich-Harris/sourcemap-codec",
  "dependencies": {
    "vlq": "^1.0.0"
  },
  "devDependencies": {
    "codecov.io": "^0.1.6",
    "console-group": "^0.3.3",
    "eslint": "^3.19.0",
    "eslint-plugin-import": "^2.2.0",
    "istanbul": "^0.4.5",
    "mocha": "^3.2.0",
    "remap-istanbul": "^0.9.5",
    "rollup": "^0.54.0",
    "rollup-plugin-node-resolve": "^3.0.0",
    "rollup-plugin-typescript": "^0.8.1",
    "typescript": "^2.7.1"
  },
  "files": [
    "dist/*.js",
    "dist/**/*.d.ts",
    "README.md"
  ]
}