├── .github ├── dependabot.yml └── workflows │ └── node.js.yml ├── .gitignore ├── .npmignore ├── README.md ├── bin └── npm-why ├── index.js ├── package.json ├── screenshot.png └── test ├── bin.spec.js └── fixtures ├── lockfile-v1 ├── package-lock.json └── package.json ├── lockfile-v2 ├── package-lock.json └── package.json ├── no-lockfile └── package.json └── recursive-dependency ├── package-lock.json └── package.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amio/npm-why/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amio/npm-why/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .nyc_output 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | .nyc_output 4 | *.png 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amio/npm-why/HEAD/README.md -------------------------------------------------------------------------------- /bin/npm-why: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amio/npm-why/HEAD/bin/npm-why -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amio/npm-why/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amio/npm-why/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amio/npm-why/HEAD/screenshot.png -------------------------------------------------------------------------------- /test/bin.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amio/npm-why/HEAD/test/bin.spec.js -------------------------------------------------------------------------------- /test/fixtures/lockfile-v1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amio/npm-why/HEAD/test/fixtures/lockfile-v1/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/lockfile-v1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amio/npm-why/HEAD/test/fixtures/lockfile-v1/package.json -------------------------------------------------------------------------------- /test/fixtures/lockfile-v2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amio/npm-why/HEAD/test/fixtures/lockfile-v2/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/lockfile-v2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amio/npm-why/HEAD/test/fixtures/lockfile-v2/package.json -------------------------------------------------------------------------------- /test/fixtures/no-lockfile/package.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/recursive-dependency/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amio/npm-why/HEAD/test/fixtures/recursive-dependency/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/recursive-dependency/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amio/npm-why/HEAD/test/fixtures/recursive-dependency/package.json --------------------------------------------------------------------------------