This file is indexed.

/usr/lib/nodejs/babel-plugin-add-module-exports/package.json is in node-babel-plugin-add-module-exports 0.2.1-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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
  "name": "babel-plugin-add-module-exports",
  "version": "0.2.1",
  "description": "Fix babel/babel#2212",
  "main": "lib",
  "files": [
    "lib"
  ],
  "scripts": {
    "start": "abby compile, watch:*",
    "watch:src": "babel src --out-dir lib --watch",
    "watch:test": "babel test --out-dir spec --ignore test/spec.js --watch",
    "watch:copy": "abby compile:copy --watch test/spec.js",
    "watch:mocha": "abby mocha --log --watch lib/**/*.js,spec/**/*.js",
    "compile": "abby compile:* --parse serial",
    "compile:version": "babel -V",
    "compile:src": "babel src --out-dir lib --source-maps",
    "compile:test": "babel test --out-dir spec --ignore test/spec.js",
    "compile:copy": "cp test/spec.js spec/spec.js",
    "test": "abby compile, mocha.",
    "mocha": "mocha spec/index.js",
    "cover": "abby cover:* --parse serial --launch force",
    "cover:test": "nyc --reporter=lcov --reporter=text npm test",
    "cover:report": "npm-if TRAVIS \"codeclimate-test-reporter < coverage/lcov.info\"",
    "lint": "eslint src test",
    "postversion": "node changelog.js > CHANGELOG.md && git add CHANGELOG.md && echo ':wq' | git commit --amend && git push --follow-tags",
    "build": "abby compile --log --env"
  },
  "nyc": {
    "exclude": [
      "spec"
    ]
  },
  "abigail": {
    "plugins": {
      "log": false,
      "parse": "raw",
      "watch": false
    }
  },
  "devDependencies": {
    "abigail": "^1.6.1",
    "babel-cli": "^6.5.1",
    "babel-core": "^6.5.1",
    "babel-plugin-transform-export-extensions": "^6.5.0",
    "babel-preset-es2015": "^6.5.0",
    "babel-preset-power-assert": "^1.0.0",
    "chokidar": "^1.4.3",
    "codeclimate-test-reporter": "^0.3.1",
    "eslint": "^2.8.0",
    "eslint-config-standard": "^5.1.0",
    "eslint-plugin-mocha": "^2.2.0",
    "eslint-plugin-promise": "^1.1.0",
    "eslint-plugin-standard": "^1.3.1",
    "mocha": "^2.4.5",
    "npm-statement": "^0.0.0",
    "nyc": "^6.4.0",
    "power-assert": "^1.2.0"
  },
  "keywords": [
    "babel-plugin",
    "module.exports"
  ],
  "author": "59naga <i59naga@icloud.com> (http://berabou.me)",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/59naga/babel-plugin-add-module-exports.git"
  },
  "bugs": {
    "url": "https://github.com/59naga/babel-plugin-add-module-exports/issues"
  },
  "homepage": "https://github.com/59naga/babel-plugin-add-module-exports#readme"
}