This file is indexed.

/usr/lib/nodejs/dot/package.json is in node-dot 1.1.1-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
{
  "name": "dot",
  "description": "Concise and fast javascript templating compatible with nodejs and other javascript environments",
  "keywords": [
    "template",
    "fast",
    "simple",
    "templating"
  ],
  "version": "1.1.1",
  "main": "index",
  "bin": {
    "dottojs": "./bin/dot-packer"
  },
  "homepage": "http://github.com/olado/doT",
  "repository": "git://github.com/olado/doT.git",
  "author": "Laura Doktorova <ldoktorova@gmail.com>",
  "engines": [
    "node >=0.2.6"
  ],
  "license": "MIT",
  "scripts": {
    "eslint": "if-node-version '>=4' eslint *.js --ignore-pattern *.min.js",
    "test-cov": "nyc mocha test/*.test.js",
    "test": "npm run eslint && npm run test-cov",
    "bundle": "uglifyjs doT.js -o doT.min.js -c -m --preamble '/* Laura Doktorova https://github.com/olado/doT */'",
    "prepublish": "npm run bundle"
  },
  "dependencies": {},
  "devDependencies": {
    "commander": "*",
    "coveralls": "^2.11.14",
    "eslint": "^3.9.1",
    "if-node-version": "^1.1.0",
    "jshint": "*",
    "mkdirp": "*",
    "mocha": "*",
    "nyc": "^8.3.2",
    "pre-commit": "^1.1.3",
    "uglify-js": "*"
  },
  "nyc": {
    "exclude": [
      "test",
      "node_modules"
    ],
    "reporter": [
      "lcov",
      "text-summary"
    ]
  }
}