├── .gitignore ├── README.md ├── bin └── deploy-from-npm.js ├── example.js ├── index.js ├── package.json └── test └── fixture └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliangruber/deploy-from-npm/HEAD/README.md -------------------------------------------------------------------------------- /bin/deploy-from-npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliangruber/deploy-from-npm/HEAD/bin/deploy-from-npm.js -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliangruber/deploy-from-npm/HEAD/example.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliangruber/deploy-from-npm/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliangruber/deploy-from-npm/HEAD/package.json -------------------------------------------------------------------------------- /test/fixture/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliangruber/deploy-from-npm/HEAD/test/fixture/package.json --------------------------------------------------------------------------------