This file is indexed.

/usr/lib/nodejs/d3-scale/package.json is in node-d3-scale 1.0.6-3.

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
{
  "name": "d3-scale",
  "version": "1.0.6",
  "description": "Encodings that map abstract data to visual representation.",
  "keywords": [
    "d3",
    "d3-module",
    "scale",
    "visualization"
  ],
  "homepage": "https://d3js.org/d3-scale/",
  "license": "BSD-3-Clause",
  "author": {
    "name": "Mike Bostock",
    "url": "http://bost.ocks.org/mike"
  },
  "main": "build/d3-scale.js",
  "module": "index",
  "jsnext:main": "index",
  "repository": {
    "type": "git",
    "url": "https://github.com/d3/d3-scale.git"
  },
  "scripts": {
    "pretest": "rm -rf build && mkdir build && rollup --banner \"$(preamble)\" -f umd -g d3-array:d3,d3-collection:d3,d3-color:d3,d3-format:d3,d3-interpolate:d3,d3-time:d3,d3-time-format:d3 -n d3 -o build/d3-scale.js -- index.js",
    "test": "TZ=America/Los_Angeles tape 'test/**/*-test.js' && eslint index.js src test",
    "prepublish": "npm run test && uglifyjs --preamble \"$(preamble)\" build/d3-scale.js -c -m -o build/d3-scale.min.js",
    "postpublish": "git push && git push --tags && cd ../d3.github.com && git pull && cp ../d3-scale/build/d3-scale.js d3-scale.v1.js && cp ../d3-scale/build/d3-scale.min.js d3-scale.v1.min.js && git add d3-scale.v1.js d3-scale.v1.min.js && git commit -m \"d3-scale ${npm_package_version}\" && git push && cd - && zip -j build/d3-scale.zip -- LICENSE README.md build/d3-scale.js build/d3-scale.min.js"
  },
  "dependencies": {
    "d3-array": "^1.2.0",
    "d3-collection": "1",
    "d3-color": "1",
    "d3-format": "1",
    "d3-interpolate": "1",
    "d3-time": "1",
    "d3-time-format": "2"
  },
  "devDependencies": {
    "eslint": "3",
    "package-preamble": "0.1",
    "rollup": "0.41",
    "tape": "4",
    "uglify-js": "^2.8.11"
  }
}