├── .gitignore ├── .npmrc ├── .travis.yml ├── README.md ├── index.js ├── package.json └── test ├── .gitignore ├── .npmrc ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cache-require-paths/HEAD/.npmrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cache-require-paths/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cache-require-paths/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cache-require-paths/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cache-require-paths/HEAD/package.json -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | .cache-require-paths.json 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /test/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cache-require-paths/HEAD/test/.npmrc -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cache-require-paths/HEAD/test/index.js -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cache-require-paths/HEAD/test/package.json --------------------------------------------------------------------------------