package-json-cleanup-loader

1.0.3 • Public • Published

NPM Package Build Status

Description

Did you know that when webpack includes package.json file in bundle this bundle can contain private information like installed module path? For example, lets install browserify:

$ npm install browserify
...
$ cat ./node_modules/browserify/package.json  | grep _
  {
    "_from": "browserify",
    "_id": "browserify@16.1.1",
    "_inBundle": false,
    "_integrity": "sha512-iSH21jK0+IApV8YHOfmGt1qsGd74oflQ1Ko/28JOkWLFNBngAQfKb6WYIJ9CufH8vycqKX1sYU3y7ZrVhwevAg==",
    "_location": "/browserify",
    "_phantomChildren": {},
    "_requested": {
      "type": "tag",
      "registry": true,
      "raw": "browserify",
      "name": "browserify",
      "escapedName": "browserify",
      "rawSpec": "",
      "saveSpec": null,
      "fetchSpec": "latest"
    },
    "_requiredBy": [
      "#USER",
      "/"
    ],
    "_resolved": "https://registry.npmjs.org/browserify/-/browserify-16.1.1.tgz",
    "_shasum": "7905ec07e0147c4d90f92001944050a6e1c2844e",
    "_spec": "browserify",
    "_where": "C:\\work\\json-cleanup-loader",
  }

This package remove all values for which keys starts with _ and with specific character that you can pass in options.

How I can use this package?

Installation

npm i --save-dev package-json-cleanup-loader

or

yarn add -D package-json-cleanup-loader

Usage

CLI

webpack --module-bind 'path/to/package.json=package-json-cleanup-loader'

Change webpack config

module.exports = {
  module: {
    rules: [
      {
        test: /package\.json$/,
        loader: 'package-json-cleanup-loader',
        options: {
          only: ['version', 'name', 'otherParam']
        }
      }
    ]
  }
}

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i package-json-cleanup-loader

Weekly Downloads

1,433

Version

1.0.3

License

MIT

Unpacked Size

5.94 kB

Total Files

7

Last publish

Collaborators

  • headfire