with-package

1.0.2 • Public • Published

with-package

Run any command with package.json properties exposed as environment variables

NPM

Build status semantic-release renovate-app badge

Imagine you want to use variables from the package.json in the script commands. Now you can. For example, let us say you want to commit and tag the git branch with the current version label. Install with-package and use it as first keyword in the command

npm install --save-dev with-package
"scripts"{
  "release": "with-package git commit -am pkg.version && with-package git tag pkg.version"
},

Just refer to any primitive property of package.json as pkg.<property name>. Objects and arrays are not supported. If you need to debug the substitution, add --debug or -d flag to the command.

with-package echo this is pkg.description --debug

Note: some of the package.json variables are already exposed as environment variables, see this doc.

Small print

Author: Gleb Bahmutov © 2015 @bahmutov glebbahmutov.com glebbahmutov.com/blog

License: MIT - do anything with the code, but don't blame me if it does not work.

Spread the word: tweet, star on github, etc.

Support: if you find any problems with this module, email / tweet / open issue on Github

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.2
    51
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.2
    51
  • 1.0.1
    0
  • 1.0.0
    0
  • 0.2.0
    6
  • 0.1.0
    0

Package Sidebar

Install

npm i with-package

Weekly Downloads

41

Version

1.0.2

License

MIT

Unpacked Size

7.03 kB

Total Files

7

Last publish

Collaborators

  • bahmutov