1.1.1 • Published 8 years ago

pkg-config v1.1.1

Weekly downloads
251,360
License
MIT
Repository
github
Last release
8 years ago

pkg-config version License

parse the closest package.json and get package specific configurations

Useful for package developers to store package-related configuration in dependent's package.json.

defaults to config as root, which allows you to still leverage npm's standard config

Build Status Downloads Code Climate Coverage Status Dependencies

Install

npm install --save pkg-config

Usage

sample package.json
{
  ...

  "config": {
    "my-pkg": {
      "foo": "bar"
    }
  },

  "settings": {
    "some-pkg": {
      "foo": "bar"
    }
  }

  ...
}
// defaults to `package.config`
var config = require('pkg-config')()

// returns `package.config[my-pkg]`
var config = require('pkg-config')('my-pkg')

// returns fallback value
var config = require('pkg-config')('another-pkg', false, {
  foo: 'baz'
})

// returns `package.settings[some-pkg]`
var config = require('pkg-config')('some-pkg', {
  root: 'settings'
})

// returns `package.settings`
var config = require('pkg-config')('settings', {
  root: false
})

API

config(namespace, options, fallback)

Arguments

namedescriptiondefault
namespaceproperty name in package.json, typically this will be your package nameundefined
optionsee options
fallbackfallback valueundefined

Options

namedescriptiondefault
rootpackage.json object rootconfig
cwdstarting directory to look for package.jsonprocess.cwd
cachecache package.json's contenttrue

Support

Donations are welcome to help support the continuous development of this project.

Gratipay PayPal Flattr Bitcoin

License

MIT © Ahmad Nassri