├── .github ├── banner.png ├── blessed.png ├── ci-error.png ├── ci-success.png └── inlinetable.png ├── .gitignore ├── .npmignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── appveyor.yml ├── package.json ├── src ├── cliopts.ts ├── deps.ts ├── filesys.ts ├── index.ts ├── interfaces │ ├── ICLIOpts.ts │ ├── IDependency.ts │ ├── IDependencyMap.ts │ ├── IPackageDescriptor.ts │ ├── IPackageDescriptorMap.ts │ ├── IPackageMatchInfo.ts │ ├── IRenderer.ts │ └── IVetPaths.ts ├── renderers │ ├── blessed.ts │ ├── ci.ts │ ├── index.ts │ ├── inlinetable.ts │ └── json.ts └── vet.ts ├── test ├── filename.js ├── preprocessor.js └── tests │ ├── cliopts │ ├── getCLIOptionsTest.js │ └── makeVetPathsTest.js │ ├── deps │ ├── extractVersionFromUrlTest.js │ └── parseVersionTest.js │ └── filesys │ ├── fileExistsTest.js │ └── folderExistsTest.js └── tsconfig.json /.github/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/.github/banner.png -------------------------------------------------------------------------------- /.github/blessed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/.github/blessed.png -------------------------------------------------------------------------------- /.github/ci-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/.github/ci-error.png -------------------------------------------------------------------------------- /.github/ci-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/.github/ci-success.png -------------------------------------------------------------------------------- /.github/inlinetable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/.github/inlinetable.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | dist 4 | typings 5 | npm-debug.log 6 | coverage -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | test -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/appveyor.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/package.json -------------------------------------------------------------------------------- /src/cliopts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/src/cliopts.ts -------------------------------------------------------------------------------- /src/deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/src/deps.ts -------------------------------------------------------------------------------- /src/filesys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/src/filesys.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces/ICLIOpts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/src/interfaces/ICLIOpts.ts -------------------------------------------------------------------------------- /src/interfaces/IDependency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/src/interfaces/IDependency.ts -------------------------------------------------------------------------------- /src/interfaces/IDependencyMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/src/interfaces/IDependencyMap.ts -------------------------------------------------------------------------------- /src/interfaces/IPackageDescriptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/src/interfaces/IPackageDescriptor.ts -------------------------------------------------------------------------------- /src/interfaces/IPackageDescriptorMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/src/interfaces/IPackageDescriptorMap.ts -------------------------------------------------------------------------------- /src/interfaces/IPackageMatchInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/src/interfaces/IPackageMatchInfo.ts -------------------------------------------------------------------------------- /src/interfaces/IRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/src/interfaces/IRenderer.ts -------------------------------------------------------------------------------- /src/interfaces/IVetPaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/src/interfaces/IVetPaths.ts -------------------------------------------------------------------------------- /src/renderers/blessed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/src/renderers/blessed.ts -------------------------------------------------------------------------------- /src/renderers/ci.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/src/renderers/ci.ts -------------------------------------------------------------------------------- /src/renderers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/src/renderers/index.ts -------------------------------------------------------------------------------- /src/renderers/inlinetable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/src/renderers/inlinetable.ts -------------------------------------------------------------------------------- /src/renderers/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/src/renderers/json.ts -------------------------------------------------------------------------------- /src/vet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/src/vet.ts -------------------------------------------------------------------------------- /test/filename.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/test/filename.js -------------------------------------------------------------------------------- /test/preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/test/preprocessor.js -------------------------------------------------------------------------------- /test/tests/cliopts/getCLIOptionsTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/test/tests/cliopts/getCLIOptionsTest.js -------------------------------------------------------------------------------- /test/tests/cliopts/makeVetPathsTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/test/tests/cliopts/makeVetPathsTest.js -------------------------------------------------------------------------------- /test/tests/deps/extractVersionFromUrlTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/test/tests/deps/extractVersionFromUrlTest.js -------------------------------------------------------------------------------- /test/tests/deps/parseVersionTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/test/tests/deps/parseVersionTest.js -------------------------------------------------------------------------------- /test/tests/filesys/fileExistsTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/test/tests/filesys/fileExistsTest.js -------------------------------------------------------------------------------- /test/tests/filesys/folderExistsTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/test/tests/filesys/folderExistsTest.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harksys/npmvet/HEAD/tsconfig.json --------------------------------------------------------------------------------