├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json └── source └── .ebextensions └── fix-npm.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/eb-fix-npm/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## Release History 2 | 3 | * 1.2.6 Update install-files package to get bug fixes. 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/eb-fix-npm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/eb-fix-npm/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/eb-fix-npm/HEAD/package.json -------------------------------------------------------------------------------- /source/.ebextensions/fix-npm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/eb-fix-npm/HEAD/source/.ebextensions/fix-npm.config --------------------------------------------------------------------------------