├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── bin └── envify ├── custom.js ├── index.js ├── package.json └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test.js 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughsk/envify/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughsk/envify/HEAD/README.md -------------------------------------------------------------------------------- /bin/envify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughsk/envify/HEAD/bin/envify -------------------------------------------------------------------------------- /custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughsk/envify/HEAD/custom.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./custom')(process.env) 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughsk/envify/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughsk/envify/HEAD/test.js --------------------------------------------------------------------------------