This file is indexed.

/usr/lib/nodejs/mithril/package.json is in node-mithril 1.1.6-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
{
  "name": "mithril",
  "version": "1.1.6",
  "description": "A framework for building brilliant applications",
  "author": "Leo Horie",
  "license": "MIT",
  "main": "mithril.js",
  "repository": "MithrilJS/mithril.js",
  "scripts": {
    "dev": "node bundler/cli browser.js -o mithril.js -w",
    "build": "npm run build-browser & npm run build-min",
    "build-browser": "node bundler/cli browser.js -o mithril.js",
    "build-min": "node bundler/cli browser.js -o mithril.min.js -m",
    "lintdocs": "node docs/lint",
    "gendocs": "node docs/generate",
    "lint": "eslint . || true",
    "lint:fix": "eslint . --fix",
    "perf": "node performance/test-perf.js",
    "test": "node ospec/bin/ospec",
    "posttest": "npm run lint",
    "cover": "istanbul cover --print both ospec/bin/ospec",
    "release": "npm version -m 'v%s'",
    "preversion": "npm run test",
    "version": "npm run build && git add mithril.js mithril.min.js",
    "postversion": "git push --follow-tags"
  },
  "devDependencies": {
    "@alrra/travis-scripts": "^3.0.1",
    "benchmark": "^2.1.4",
    "eslint": "^3.19.0",
    "gh-pages": "^0.12.0",
    "istanbul": "^0.4.5",
    "marked": "^0.3.6"
  },
  "bin": {
    "ospec": "./ospec/bin/ospec",
    "bundle": "./bundler/bin/bundle"
  },
  "dependencies": {}
}