├── .babelrc ├── .eslintignore ├── .eslintrc.yml ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── stale.yml └── workflows │ ├── nodejs.yml │ └── publish.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin └── depcheck.js ├── dependent-build.yml ├── doc └── pluggable-design.md ├── false-alert.js ├── index.d.tmpl ├── package.json ├── src ├── check.js ├── cli.js ├── component.json ├── constants.js ├── detector │ ├── exportDeclaration.js │ ├── expressViewEngine.js │ ├── extract.js │ ├── gruntLoadTaskCallExpression.js │ ├── importCallExpression.js │ ├── importDeclaration.js │ ├── requireCallExpression.js │ ├── requireResolveCallExpression.js │ ├── typescriptImportEqualsDeclaration.js │ └── typescriptImportType.js ├── index.js ├── parser │ ├── coffee.js │ ├── es6.js │ ├── es7.js │ ├── graphql.js │ ├── jsx.js │ ├── sass.js │ ├── storybook.js │ ├── svelte.js │ ├── tsconfig.js │ ├── typescript.js │ └── vue.js ├── special │ ├── babel.js │ ├── bin.js │ ├── commitizen.js │ ├── eslint.js │ ├── feross-standard.js │ ├── gatsby.js │ ├── gulp-load-plugins.js │ ├── husky.js │ ├── istanbul.js │ ├── jest.js │ ├── karma.js │ ├── lint-staged.js │ ├── mocha.js │ ├── prettier.js │ ├── react17.js │ ├── serverless.js │ ├── tslint.js │ ├── ttypescript.js │ └── webpack.js └── utils │ ├── cli-tools.js │ ├── configuration-reader.js │ ├── exceptions │ └── configuration-parsing-exception.js │ ├── file.js │ ├── get-scripts.js │ ├── index.js │ ├── module-root.js │ ├── parser.js │ ├── typescript.js │ └── webpack.js └── test ├── .eslintrc.yml ├── .gitignore ├── cli.js ├── configuration-reader.js ├── fake_detectors ├── dependCallExpression.js └── exception.js ├── fake_modules ├── bad │ ├── index.js │ └── package.json ├── bad_deep │ ├── package.json │ └── test │ │ └── sandbox │ │ └── index.js ├── bad_es6 │ ├── index.js │ └── package.json ├── bad_js │ ├── index.js │ └── package.json ├── bin_js │ ├── index.js │ ├── node_modules │ │ ├── anybin │ │ │ └── package.json │ │ └── nobin │ │ │ └── package.json │ └── package.json ├── coffee_script │ ├── index.coffee │ └── package.json ├── config_argument │ ├── package.json │ └── subdir │ │ └── depcheckrc.json ├── decorators │ ├── index.tsx │ └── package.json ├── depcheckignore │ ├── .depcheckignore │ ├── ignored │ │ └── ignored.js │ ├── package.json │ └── used.js ├── depend │ ├── index.js │ └── package.json ├── dev │ ├── index.js │ └── package.json ├── empty_dep │ ├── index.js │ └── package.json ├── empty_file │ ├── index.js │ └── package.json ├── eslint_config │ ├── .eslintrc │ └── package.json ├── eslint_config_custom │ ├── config.json │ └── package.json ├── eslint_config_js │ ├── config.js │ └── package.json ├── express_view_engine │ ├── index.js │ └── package.json ├── filepath_pattern │ ├── .gitignore │ ├── dist │ │ └── index.js │ ├── package.json │ ├── src │ │ ├── index.js │ │ └── one-more.js │ └── tests │ │ └── index.js ├── gatsby │ ├── gatsby-config.js │ └── package.json ├── good │ ├── index.js │ └── package.json ├── good_es6 │ ├── index.js │ └── package.json ├── good_es7 │ ├── index.js │ └── package.json ├── good_es7_flow │ ├── index.js │ └── package.json ├── graphql │ ├── package.json │ └── test.graphql ├── grunt-tasks │ ├── index.js │ └── package.json ├── grunt │ ├── index.js │ └── package.json ├── ignore_number │ ├── index.js │ └── package.json ├── import_function │ ├── index.js │ └── package.json ├── import_function_missing │ ├── index.js │ └── package.json ├── import_function_template_literal │ ├── index.js │ └── package.json ├── import_function_webpack │ ├── index.js │ └── package.json ├── import_list │ ├── index.txt │ └── package.json ├── import_list_peer │ ├── index.txt │ ├── node_modules │ │ └── direct-dependency │ │ │ └── package.json │ └── package.json ├── jsx │ ├── index.jsx │ └── package.json ├── jsx_flow │ ├── index.jsx │ └── package.json ├── jsx_js │ ├── index.js │ └── package.json ├── missing │ ├── index.js │ └── package.json ├── missing_ignore │ ├── index.js │ └── package.json ├── missing_nested │ ├── index.js │ ├── nested │ │ ├── index.js │ │ └── package.json │ └── package.json ├── missing_peer_deps │ ├── index.js │ └── package.json ├── mocha_config │ ├── config.mocha │ └── package.json ├── mocha_opts │ ├── mocha.opts.txt │ └── package.json ├── multiple_parsers │ ├── index.csv │ └── package.json ├── nested │ ├── index.js │ └── package.json ├── next_config │ ├── next.config.js │ └── package.json ├── next_config_invalid │ ├── next.config.js │ └── package.json ├── node_modules │ └── eslint-config-foo-bar │ │ ├── .eslintrc.js │ │ └── package.json ├── optional_dep │ ├── index.js │ ├── node_modules │ │ └── host │ │ │ └── package.json │ └── package.json ├── package_import_map │ ├── index.js │ └── package.json ├── peer_dep │ ├── index.js │ ├── node_modules │ │ └── host │ │ │ └── package.json │ └── package.json ├── peer_dep_nested │ ├── nested │ │ └── index.js │ ├── node_modules │ │ └── host │ │ │ └── package.json │ └── package.json ├── prettier │ └── package.json ├── require_dynamic │ ├── index.js │ └── package.json ├── require_nothing │ ├── index.js │ └── package.json ├── require_resolve │ ├── index.js │ └── package.json ├── require_resolve_missing │ ├── index.js │ └── package.json ├── sass │ ├── _variables.scss │ ├── mixin.scss │ ├── node_modules │ │ ├── sass-dep │ │ │ └── index.sass │ │ └── scss-dep │ │ │ └── index.scss │ ├── package.json │ ├── sass.sass │ ├── sass2.sass │ ├── scss.scss │ └── scss2.scss ├── scoped_module │ ├── index.js │ └── package.json ├── shebang │ ├── index.js │ └── package.json ├── simlink │ ├── index.js │ ├── lib │ │ └── lib.js │ └── package │ │ ├── index.js │ │ ├── lib │ │ └── package.json ├── storybook │ ├── .storybook │ │ └── main.js │ └── package.json ├── styleguidist_config │ ├── package.json │ └── styleguide.config.js ├── svelte │ ├── App.svelte │ └── package.json ├── tsconfig │ ├── package.json │ ├── tsconfig.array-extends.json │ ├── tsconfig.build.json │ └── tsconfig.json ├── tslint_config │ ├── config.json │ └── package.json ├── tslint_config_custom_invalid │ ├── invalid.json │ └── package.json ├── typescript │ ├── component.tsx │ ├── esnext.ts │ ├── index.ts │ ├── package.json │ ├── typeOnly.ts │ └── typedef.d.ts ├── unreadable │ └── package.json ├── unreadable_deep │ ├── deep │ │ └── nested │ │ │ └── index.js │ └── package.json ├── url_import │ ├── index.js │ └── package.json ├── vue │ ├── component.vue │ ├── index.js │ └── package.json ├── vue3 │ ├── component.vue │ ├── index.js │ └── package.json ├── vue3_setup │ ├── component.vue │ ├── component_ts.vue │ ├── index.js │ └── package.json ├── webpack_inline_loader │ ├── index.js │ ├── index.ts │ └── package.json └── webpack_loader_with_parameters │ ├── index.js │ └── package.json ├── fake_parsers ├── exception.js ├── importList.js └── multiple.js ├── index.js ├── node_modules ├── esm │ ├── index.js │ └── package.json └── upperbin │ └── package.json ├── spec.js ├── special ├── babel.js ├── bin.js ├── commitizen.js ├── eslint.js ├── feross-standard.js ├── gatsby.js ├── gulp-load-plugins.js ├── husky.js ├── istanbul.js ├── jest.js ├── karma.js ├── lint-staged.js ├── mocha.js ├── node_modules │ ├── @scoped │ │ ├── scoped-binary-package │ │ │ └── package.json │ │ └── scoped-single-binary-package │ │ │ └── package.json │ ├── binary-no-bin │ │ └── package.json │ ├── binary-no-package │ │ └── index.js │ ├── binary-package │ │ └── package.json │ ├── eslint-config-airbnb │ │ ├── base.js │ │ ├── index.js │ │ ├── package.json │ │ └── react.js │ ├── eslint-config-preset │ │ ├── index.js │ │ └── package.json │ ├── single-binary-package │ │ └── package.json │ └── webpack │ │ └── index.js ├── prettier.js ├── react17.js ├── serverless.js ├── tslint.js ├── ttypescript.js └── webpack.js └── utils.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | package-lock.json -diff 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [rumpl] 2 | open_collective: depcheck 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/README.md -------------------------------------------------------------------------------- /bin/depcheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/bin/depcheck.js -------------------------------------------------------------------------------- /dependent-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/dependent-build.yml -------------------------------------------------------------------------------- /doc/pluggable-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/doc/pluggable-design.md -------------------------------------------------------------------------------- /false-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/false-alert.js -------------------------------------------------------------------------------- /index.d.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/index.d.tmpl -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/package.json -------------------------------------------------------------------------------- /src/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/check.js -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/cli.js -------------------------------------------------------------------------------- /src/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/component.json -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/detector/exportDeclaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/detector/exportDeclaration.js -------------------------------------------------------------------------------- /src/detector/expressViewEngine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/detector/expressViewEngine.js -------------------------------------------------------------------------------- /src/detector/extract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/detector/extract.js -------------------------------------------------------------------------------- /src/detector/gruntLoadTaskCallExpression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/detector/gruntLoadTaskCallExpression.js -------------------------------------------------------------------------------- /src/detector/importCallExpression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/detector/importCallExpression.js -------------------------------------------------------------------------------- /src/detector/importDeclaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/detector/importDeclaration.js -------------------------------------------------------------------------------- /src/detector/requireCallExpression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/detector/requireCallExpression.js -------------------------------------------------------------------------------- /src/detector/requireResolveCallExpression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/detector/requireResolveCallExpression.js -------------------------------------------------------------------------------- /src/detector/typescriptImportEqualsDeclaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/detector/typescriptImportEqualsDeclaration.js -------------------------------------------------------------------------------- /src/detector/typescriptImportType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/detector/typescriptImportType.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/index.js -------------------------------------------------------------------------------- /src/parser/coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/parser/coffee.js -------------------------------------------------------------------------------- /src/parser/es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/parser/es6.js -------------------------------------------------------------------------------- /src/parser/es7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/parser/es7.js -------------------------------------------------------------------------------- /src/parser/graphql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/parser/graphql.js -------------------------------------------------------------------------------- /src/parser/jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/parser/jsx.js -------------------------------------------------------------------------------- /src/parser/sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/parser/sass.js -------------------------------------------------------------------------------- /src/parser/storybook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/parser/storybook.js -------------------------------------------------------------------------------- /src/parser/svelte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/parser/svelte.js -------------------------------------------------------------------------------- /src/parser/tsconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/parser/tsconfig.js -------------------------------------------------------------------------------- /src/parser/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/parser/typescript.js -------------------------------------------------------------------------------- /src/parser/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/parser/vue.js -------------------------------------------------------------------------------- /src/special/babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/special/babel.js -------------------------------------------------------------------------------- /src/special/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/special/bin.js -------------------------------------------------------------------------------- /src/special/commitizen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/special/commitizen.js -------------------------------------------------------------------------------- /src/special/eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/special/eslint.js -------------------------------------------------------------------------------- /src/special/feross-standard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/special/feross-standard.js -------------------------------------------------------------------------------- /src/special/gatsby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/special/gatsby.js -------------------------------------------------------------------------------- /src/special/gulp-load-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/special/gulp-load-plugins.js -------------------------------------------------------------------------------- /src/special/husky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/special/husky.js -------------------------------------------------------------------------------- /src/special/istanbul.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/special/istanbul.js -------------------------------------------------------------------------------- /src/special/jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/special/jest.js -------------------------------------------------------------------------------- /src/special/karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/special/karma.js -------------------------------------------------------------------------------- /src/special/lint-staged.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/special/lint-staged.js -------------------------------------------------------------------------------- /src/special/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/special/mocha.js -------------------------------------------------------------------------------- /src/special/prettier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/special/prettier.js -------------------------------------------------------------------------------- /src/special/react17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/special/react17.js -------------------------------------------------------------------------------- /src/special/serverless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/special/serverless.js -------------------------------------------------------------------------------- /src/special/tslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/special/tslint.js -------------------------------------------------------------------------------- /src/special/ttypescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/special/ttypescript.js -------------------------------------------------------------------------------- /src/special/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/special/webpack.js -------------------------------------------------------------------------------- /src/utils/cli-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/utils/cli-tools.js -------------------------------------------------------------------------------- /src/utils/configuration-reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/utils/configuration-reader.js -------------------------------------------------------------------------------- /src/utils/exceptions/configuration-parsing-exception.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/utils/exceptions/configuration-parsing-exception.js -------------------------------------------------------------------------------- /src/utils/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/utils/file.js -------------------------------------------------------------------------------- /src/utils/get-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/utils/get-scripts.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/module-root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/utils/module-root.js -------------------------------------------------------------------------------- /src/utils/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/utils/parser.js -------------------------------------------------------------------------------- /src/utils/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/utils/typescript.js -------------------------------------------------------------------------------- /src/utils/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/src/utils/webpack.js -------------------------------------------------------------------------------- /test/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/.eslintrc.yml -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | !node_modules 2 | -------------------------------------------------------------------------------- /test/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/cli.js -------------------------------------------------------------------------------- /test/configuration-reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/configuration-reader.js -------------------------------------------------------------------------------- /test/fake_detectors/dependCallExpression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_detectors/dependCallExpression.js -------------------------------------------------------------------------------- /test/fake_detectors/exception.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_detectors/exception.js -------------------------------------------------------------------------------- /test/fake_modules/bad/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/bad/index.js -------------------------------------------------------------------------------- /test/fake_modules/bad/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/bad/package.json -------------------------------------------------------------------------------- /test/fake_modules/bad_deep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/bad_deep/package.json -------------------------------------------------------------------------------- /test/fake_modules/bad_deep/test/sandbox/index.js: -------------------------------------------------------------------------------- 1 | require('module_bad_deep'); 2 | -------------------------------------------------------------------------------- /test/fake_modules/bad_es6/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/bad_es6/index.js -------------------------------------------------------------------------------- /test/fake_modules/bad_es6/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/bad_es6/package.json -------------------------------------------------------------------------------- /test/fake_modules/bad_js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/bad_js/index.js -------------------------------------------------------------------------------- /test/fake_modules/bad_js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/bad_js/package.json -------------------------------------------------------------------------------- /test/fake_modules/bin_js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/bin_js/index.js -------------------------------------------------------------------------------- /test/fake_modules/bin_js/node_modules/anybin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/bin_js/node_modules/anybin/package.json -------------------------------------------------------------------------------- /test/fake_modules/bin_js/node_modules/nobin/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "a-package-without-bin-entry" 3 | } 4 | -------------------------------------------------------------------------------- /test/fake_modules/bin_js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/bin_js/package.json -------------------------------------------------------------------------------- /test/fake_modules/coffee_script/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/coffee_script/index.coffee -------------------------------------------------------------------------------- /test/fake_modules/coffee_script/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/coffee_script/package.json -------------------------------------------------------------------------------- /test/fake_modules/config_argument/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/config_argument/package.json -------------------------------------------------------------------------------- /test/fake_modules/config_argument/subdir/depcheckrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "ignores": ["foo"] 3 | } 4 | -------------------------------------------------------------------------------- /test/fake_modules/decorators/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/decorators/index.tsx -------------------------------------------------------------------------------- /test/fake_modules/decorators/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/decorators/package.json -------------------------------------------------------------------------------- /test/fake_modules/depcheckignore/.depcheckignore: -------------------------------------------------------------------------------- 1 | ignored/* 2 | -------------------------------------------------------------------------------- /test/fake_modules/depcheckignore/ignored/ignored.js: -------------------------------------------------------------------------------- 1 | require('debug'); 2 | -------------------------------------------------------------------------------- /test/fake_modules/depcheckignore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/depcheckignore/package.json -------------------------------------------------------------------------------- /test/fake_modules/depcheckignore/used.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/depcheckignore/used.js -------------------------------------------------------------------------------- /test/fake_modules/depend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/depend/index.js -------------------------------------------------------------------------------- /test/fake_modules/depend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/depend/package.json -------------------------------------------------------------------------------- /test/fake_modules/dev/index.js: -------------------------------------------------------------------------------- 1 | require('used-dep'); 2 | -------------------------------------------------------------------------------- /test/fake_modules/dev/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/dev/package.json -------------------------------------------------------------------------------- /test/fake_modules/empty_dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/empty_dep/index.js -------------------------------------------------------------------------------- /test/fake_modules/empty_dep/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/fake_modules/empty_file/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fake_modules/empty_file/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/empty_file/package.json -------------------------------------------------------------------------------- /test/fake_modules/eslint_config/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "preset" 3 | } 4 | -------------------------------------------------------------------------------- /test/fake_modules/eslint_config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/eslint_config/package.json -------------------------------------------------------------------------------- /test/fake_modules/eslint_config_custom/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/eslint_config_custom/config.json -------------------------------------------------------------------------------- /test/fake_modules/eslint_config_custom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/eslint_config_custom/package.json -------------------------------------------------------------------------------- /test/fake_modules/eslint_config_js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/eslint_config_js/config.js -------------------------------------------------------------------------------- /test/fake_modules/eslint_config_js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/eslint_config_js/package.json -------------------------------------------------------------------------------- /test/fake_modules/express_view_engine/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/express_view_engine/index.js -------------------------------------------------------------------------------- /test/fake_modules/express_view_engine/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/express_view_engine/package.json -------------------------------------------------------------------------------- /test/fake_modules/filepath_pattern/.gitignore: -------------------------------------------------------------------------------- 1 | !dist 2 | -------------------------------------------------------------------------------- /test/fake_modules/filepath_pattern/dist/index.js: -------------------------------------------------------------------------------- 1 | require('dont-find-me'); 2 | -------------------------------------------------------------------------------- /test/fake_modules/filepath_pattern/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/filepath_pattern/package.json -------------------------------------------------------------------------------- /test/fake_modules/filepath_pattern/src/index.js: -------------------------------------------------------------------------------- 1 | require('find-me'); 2 | -------------------------------------------------------------------------------- /test/fake_modules/filepath_pattern/src/one-more.js: -------------------------------------------------------------------------------- 1 | require('find-me2'); 2 | -------------------------------------------------------------------------------- /test/fake_modules/filepath_pattern/tests/index.js: -------------------------------------------------------------------------------- 1 | require('dont-find-me'); 2 | -------------------------------------------------------------------------------- /test/fake_modules/gatsby/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/gatsby/gatsby-config.js -------------------------------------------------------------------------------- /test/fake_modules/gatsby/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/gatsby/package.json -------------------------------------------------------------------------------- /test/fake_modules/good/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/good/index.js -------------------------------------------------------------------------------- /test/fake_modules/good/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/good/package.json -------------------------------------------------------------------------------- /test/fake_modules/good_es6/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/good_es6/index.js -------------------------------------------------------------------------------- /test/fake_modules/good_es6/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/good_es6/package.json -------------------------------------------------------------------------------- /test/fake_modules/good_es7/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/good_es7/index.js -------------------------------------------------------------------------------- /test/fake_modules/good_es7/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/good_es7/package.json -------------------------------------------------------------------------------- /test/fake_modules/good_es7_flow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/good_es7_flow/index.js -------------------------------------------------------------------------------- /test/fake_modules/good_es7_flow/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/good_es7_flow/package.json -------------------------------------------------------------------------------- /test/fake_modules/graphql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/graphql/package.json -------------------------------------------------------------------------------- /test/fake_modules/graphql/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/graphql/test.graphql -------------------------------------------------------------------------------- /test/fake_modules/grunt-tasks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/grunt-tasks/index.js -------------------------------------------------------------------------------- /test/fake_modules/grunt-tasks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/grunt-tasks/package.json -------------------------------------------------------------------------------- /test/fake_modules/grunt/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/grunt/index.js -------------------------------------------------------------------------------- /test/fake_modules/grunt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/grunt/package.json -------------------------------------------------------------------------------- /test/fake_modules/ignore_number/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/ignore_number/index.js -------------------------------------------------------------------------------- /test/fake_modules/ignore_number/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/ignore_number/package.json -------------------------------------------------------------------------------- /test/fake_modules/import_function/index.js: -------------------------------------------------------------------------------- 1 | import('optimist'); 2 | -------------------------------------------------------------------------------- /test/fake_modules/import_function/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/import_function/package.json -------------------------------------------------------------------------------- /test/fake_modules/import_function_missing/index.js: -------------------------------------------------------------------------------- 1 | import('anyone'); 2 | -------------------------------------------------------------------------------- /test/fake_modules/import_function_missing/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/fake_modules/import_function_template_literal/index.js: -------------------------------------------------------------------------------- 1 | import(`optimist`); 2 | -------------------------------------------------------------------------------- /test/fake_modules/import_function_template_literal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/import_function_template_literal/package.json -------------------------------------------------------------------------------- /test/fake_modules/import_function_webpack/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/import_function_webpack/index.js -------------------------------------------------------------------------------- /test/fake_modules/import_function_webpack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/import_function_webpack/package.json -------------------------------------------------------------------------------- /test/fake_modules/import_list/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/import_list/index.txt -------------------------------------------------------------------------------- /test/fake_modules/import_list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/import_list/package.json -------------------------------------------------------------------------------- /test/fake_modules/import_list_peer/index.txt: -------------------------------------------------------------------------------- 1 | direct-dependency 2 | -------------------------------------------------------------------------------- /test/fake_modules/import_list_peer/node_modules/direct-dependency/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/import_list_peer/node_modules/direct-dependency/package.json -------------------------------------------------------------------------------- /test/fake_modules/import_list_peer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/import_list_peer/package.json -------------------------------------------------------------------------------- /test/fake_modules/jsx/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/jsx/index.jsx -------------------------------------------------------------------------------- /test/fake_modules/jsx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/jsx/package.json -------------------------------------------------------------------------------- /test/fake_modules/jsx_flow/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/jsx_flow/index.jsx -------------------------------------------------------------------------------- /test/fake_modules/jsx_flow/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/jsx_flow/package.json -------------------------------------------------------------------------------- /test/fake_modules/jsx_js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/jsx_js/index.js -------------------------------------------------------------------------------- /test/fake_modules/jsx_js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/jsx_js/package.json -------------------------------------------------------------------------------- /test/fake_modules/missing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/missing/index.js -------------------------------------------------------------------------------- /test/fake_modules/missing/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | -------------------------------------------------------------------------------- /test/fake_modules/missing_ignore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/missing_ignore/index.js -------------------------------------------------------------------------------- /test/fake_modules/missing_ignore/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | -------------------------------------------------------------------------------- /test/fake_modules/missing_nested/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/missing_nested/index.js -------------------------------------------------------------------------------- /test/fake_modules/missing_nested/nested/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/missing_nested/nested/index.js -------------------------------------------------------------------------------- /test/fake_modules/missing_nested/nested/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | -------------------------------------------------------------------------------- /test/fake_modules/missing_nested/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/missing_nested/package.json -------------------------------------------------------------------------------- /test/fake_modules/missing_peer_deps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/missing_peer_deps/index.js -------------------------------------------------------------------------------- /test/fake_modules/missing_peer_deps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/missing_peer_deps/package.json -------------------------------------------------------------------------------- /test/fake_modules/mocha_config/config.mocha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/mocha_config/config.mocha -------------------------------------------------------------------------------- /test/fake_modules/mocha_config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/mocha_config/package.json -------------------------------------------------------------------------------- /test/fake_modules/mocha_opts/mocha.opts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/mocha_opts/mocha.opts.txt -------------------------------------------------------------------------------- /test/fake_modules/mocha_opts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/mocha_opts/package.json -------------------------------------------------------------------------------- /test/fake_modules/multiple_parsers/index.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/multiple_parsers/index.csv -------------------------------------------------------------------------------- /test/fake_modules/multiple_parsers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/multiple_parsers/package.json -------------------------------------------------------------------------------- /test/fake_modules/nested/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/nested/index.js -------------------------------------------------------------------------------- /test/fake_modules/nested/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/nested/package.json -------------------------------------------------------------------------------- /test/fake_modules/next_config/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/next_config/next.config.js -------------------------------------------------------------------------------- /test/fake_modules/next_config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/next_config/package.json -------------------------------------------------------------------------------- /test/fake_modules/next_config_invalid/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/next_config_invalid/next.config.js -------------------------------------------------------------------------------- /test/fake_modules/next_config_invalid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/next_config_invalid/package.json -------------------------------------------------------------------------------- /test/fake_modules/node_modules/eslint-config-foo-bar/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/node_modules/eslint-config-foo-bar/.eslintrc.js -------------------------------------------------------------------------------- /test/fake_modules/node_modules/eslint-config-foo-bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/node_modules/eslint-config-foo-bar/package.json -------------------------------------------------------------------------------- /test/fake_modules/optional_dep/index.js: -------------------------------------------------------------------------------- 1 | require('host'); 2 | -------------------------------------------------------------------------------- /test/fake_modules/optional_dep/node_modules/host/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/optional_dep/node_modules/host/package.json -------------------------------------------------------------------------------- /test/fake_modules/optional_dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/optional_dep/package.json -------------------------------------------------------------------------------- /test/fake_modules/package_import_map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/package_import_map/index.js -------------------------------------------------------------------------------- /test/fake_modules/package_import_map/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/package_import_map/package.json -------------------------------------------------------------------------------- /test/fake_modules/peer_dep/index.js: -------------------------------------------------------------------------------- 1 | require('host'); 2 | -------------------------------------------------------------------------------- /test/fake_modules/peer_dep/node_modules/host/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/peer_dep/node_modules/host/package.json -------------------------------------------------------------------------------- /test/fake_modules/peer_dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/peer_dep/package.json -------------------------------------------------------------------------------- /test/fake_modules/peer_dep_nested/nested/index.js: -------------------------------------------------------------------------------- 1 | require('host'); 2 | -------------------------------------------------------------------------------- /test/fake_modules/peer_dep_nested/node_modules/host/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/peer_dep_nested/node_modules/host/package.json -------------------------------------------------------------------------------- /test/fake_modules/peer_dep_nested/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/peer_dep_nested/package.json -------------------------------------------------------------------------------- /test/fake_modules/prettier/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/prettier/package.json -------------------------------------------------------------------------------- /test/fake_modules/require_dynamic/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/require_dynamic/index.js -------------------------------------------------------------------------------- /test/fake_modules/require_dynamic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/require_dynamic/package.json -------------------------------------------------------------------------------- /test/fake_modules/require_nothing/index.js: -------------------------------------------------------------------------------- 1 | require(); 2 | -------------------------------------------------------------------------------- /test/fake_modules/require_nothing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/require_nothing/package.json -------------------------------------------------------------------------------- /test/fake_modules/require_resolve/index.js: -------------------------------------------------------------------------------- 1 | require.resolve('optimist'); 2 | -------------------------------------------------------------------------------- /test/fake_modules/require_resolve/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/require_resolve/package.json -------------------------------------------------------------------------------- /test/fake_modules/require_resolve_missing/index.js: -------------------------------------------------------------------------------- 1 | require.resolve('anyone'); 2 | -------------------------------------------------------------------------------- /test/fake_modules/require_resolve_missing/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/fake_modules/sass/_variables.scss: -------------------------------------------------------------------------------- 1 | @forward "scss-dep"; -------------------------------------------------------------------------------- /test/fake_modules/sass/mixin.scss: -------------------------------------------------------------------------------- 1 | @use "variables" as vars; -------------------------------------------------------------------------------- /test/fake_modules/sass/node_modules/sass-dep/index.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/sass/node_modules/sass-dep/index.sass -------------------------------------------------------------------------------- /test/fake_modules/sass/node_modules/scss-dep/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/sass/node_modules/scss-dep/index.scss -------------------------------------------------------------------------------- /test/fake_modules/sass/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/sass/package.json -------------------------------------------------------------------------------- /test/fake_modules/sass/sass.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/sass/sass.sass -------------------------------------------------------------------------------- /test/fake_modules/sass/sass2.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/sass/sass2.sass -------------------------------------------------------------------------------- /test/fake_modules/sass/scss.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/sass/scss.scss -------------------------------------------------------------------------------- /test/fake_modules/sass/scss2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/sass/scss2.scss -------------------------------------------------------------------------------- /test/fake_modules/scoped_module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/scoped_module/index.js -------------------------------------------------------------------------------- /test/fake_modules/scoped_module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/scoped_module/package.json -------------------------------------------------------------------------------- /test/fake_modules/shebang/index.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('shebang-script'); 4 | -------------------------------------------------------------------------------- /test/fake_modules/shebang/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/shebang/package.json -------------------------------------------------------------------------------- /test/fake_modules/simlink/index.js: -------------------------------------------------------------------------------- 1 | require('lodash'); 2 | -------------------------------------------------------------------------------- /test/fake_modules/simlink/lib/lib.js: -------------------------------------------------------------------------------- 1 | require('react'); 2 | -------------------------------------------------------------------------------- /test/fake_modules/simlink/package/index.js: -------------------------------------------------------------------------------- 1 | ../index.js -------------------------------------------------------------------------------- /test/fake_modules/simlink/package/lib: -------------------------------------------------------------------------------- 1 | ../lib -------------------------------------------------------------------------------- /test/fake_modules/simlink/package/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/fake_modules/storybook/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/storybook/.storybook/main.js -------------------------------------------------------------------------------- /test/fake_modules/storybook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/storybook/package.json -------------------------------------------------------------------------------- /test/fake_modules/styleguidist_config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/styleguidist_config/package.json -------------------------------------------------------------------------------- /test/fake_modules/styleguidist_config/styleguide.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/styleguidist_config/styleguide.config.js -------------------------------------------------------------------------------- /test/fake_modules/svelte/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/svelte/App.svelte -------------------------------------------------------------------------------- /test/fake_modules/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/svelte/package.json -------------------------------------------------------------------------------- /test/fake_modules/tsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/tsconfig/package.json -------------------------------------------------------------------------------- /test/fake_modules/tsconfig/tsconfig.array-extends.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/tsconfig/tsconfig.array-extends.json -------------------------------------------------------------------------------- /test/fake_modules/tsconfig/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/tsconfig/tsconfig.build.json -------------------------------------------------------------------------------- /test/fake_modules/tsconfig/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/tsconfig/tsconfig.json -------------------------------------------------------------------------------- /test/fake_modules/tslint_config/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "foo-bar" 3 | } 4 | -------------------------------------------------------------------------------- /test/fake_modules/tslint_config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/tslint_config/package.json -------------------------------------------------------------------------------- /test/fake_modules/tslint_config_custom_invalid/invalid.json: -------------------------------------------------------------------------------- 1 | { i am invalid json 2 | -------------------------------------------------------------------------------- /test/fake_modules/tslint_config_custom_invalid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/tslint_config_custom_invalid/package.json -------------------------------------------------------------------------------- /test/fake_modules/typescript/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/typescript/component.tsx -------------------------------------------------------------------------------- /test/fake_modules/typescript/esnext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/typescript/esnext.ts -------------------------------------------------------------------------------- /test/fake_modules/typescript/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/typescript/index.ts -------------------------------------------------------------------------------- /test/fake_modules/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/typescript/package.json -------------------------------------------------------------------------------- /test/fake_modules/typescript/typeOnly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/typescript/typeOnly.ts -------------------------------------------------------------------------------- /test/fake_modules/typescript/typedef.d.ts: -------------------------------------------------------------------------------- 1 | import 'ts-dep-typedef'; 2 | -------------------------------------------------------------------------------- /test/fake_modules/unreadable/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/unreadable/package.json -------------------------------------------------------------------------------- /test/fake_modules/unreadable_deep/deep/nested/index.js: -------------------------------------------------------------------------------- 1 | require('unreadable-deep'); 2 | -------------------------------------------------------------------------------- /test/fake_modules/unreadable_deep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/unreadable_deep/package.json -------------------------------------------------------------------------------- /test/fake_modules/url_import/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/url_import/index.js -------------------------------------------------------------------------------- /test/fake_modules/url_import/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/fake_modules/vue/component.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/vue/component.vue -------------------------------------------------------------------------------- /test/fake_modules/vue/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/vue/index.js -------------------------------------------------------------------------------- /test/fake_modules/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/vue/package.json -------------------------------------------------------------------------------- /test/fake_modules/vue3/component.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/vue3/component.vue -------------------------------------------------------------------------------- /test/fake_modules/vue3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/vue3/index.js -------------------------------------------------------------------------------- /test/fake_modules/vue3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/vue3/package.json -------------------------------------------------------------------------------- /test/fake_modules/vue3_setup/component.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/vue3_setup/component.vue -------------------------------------------------------------------------------- /test/fake_modules/vue3_setup/component_ts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/vue3_setup/component_ts.vue -------------------------------------------------------------------------------- /test/fake_modules/vue3_setup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/vue3_setup/index.js -------------------------------------------------------------------------------- /test/fake_modules/vue3_setup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/vue3_setup/package.json -------------------------------------------------------------------------------- /test/fake_modules/webpack_inline_loader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/webpack_inline_loader/index.js -------------------------------------------------------------------------------- /test/fake_modules/webpack_inline_loader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/webpack_inline_loader/index.ts -------------------------------------------------------------------------------- /test/fake_modules/webpack_inline_loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/webpack_inline_loader/package.json -------------------------------------------------------------------------------- /test/fake_modules/webpack_loader_with_parameters/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/webpack_loader_with_parameters/index.js -------------------------------------------------------------------------------- /test/fake_modules/webpack_loader_with_parameters/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_modules/webpack_loader_with_parameters/package.json -------------------------------------------------------------------------------- /test/fake_parsers/exception.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_parsers/exception.js -------------------------------------------------------------------------------- /test/fake_parsers/importList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_parsers/importList.js -------------------------------------------------------------------------------- /test/fake_parsers/multiple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/fake_parsers/multiple.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/index.js -------------------------------------------------------------------------------- /test/node_modules/esm/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/node_modules/esm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/node_modules/esm/package.json -------------------------------------------------------------------------------- /test/node_modules/upperbin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/node_modules/upperbin/package.json -------------------------------------------------------------------------------- /test/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/spec.js -------------------------------------------------------------------------------- /test/special/babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/babel.js -------------------------------------------------------------------------------- /test/special/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/bin.js -------------------------------------------------------------------------------- /test/special/commitizen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/commitizen.js -------------------------------------------------------------------------------- /test/special/eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/eslint.js -------------------------------------------------------------------------------- /test/special/feross-standard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/feross-standard.js -------------------------------------------------------------------------------- /test/special/gatsby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/gatsby.js -------------------------------------------------------------------------------- /test/special/gulp-load-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/gulp-load-plugins.js -------------------------------------------------------------------------------- /test/special/husky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/husky.js -------------------------------------------------------------------------------- /test/special/istanbul.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/istanbul.js -------------------------------------------------------------------------------- /test/special/jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/jest.js -------------------------------------------------------------------------------- /test/special/karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/karma.js -------------------------------------------------------------------------------- /test/special/lint-staged.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/lint-staged.js -------------------------------------------------------------------------------- /test/special/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/mocha.js -------------------------------------------------------------------------------- /test/special/node_modules/@scoped/scoped-binary-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/node_modules/@scoped/scoped-binary-package/package.json -------------------------------------------------------------------------------- /test/special/node_modules/@scoped/scoped-single-binary-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/node_modules/@scoped/scoped-single-binary-package/package.json -------------------------------------------------------------------------------- /test/special/node_modules/binary-no-bin/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "no-binary-entry" 3 | } 4 | -------------------------------------------------------------------------------- /test/special/node_modules/binary-no-package/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/node_modules/binary-no-package/index.js -------------------------------------------------------------------------------- /test/special/node_modules/binary-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/node_modules/binary-package/package.json -------------------------------------------------------------------------------- /test/special/node_modules/eslint-config-airbnb/base.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /test/special/node_modules/eslint-config-airbnb/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/node_modules/eslint-config-airbnb/index.js -------------------------------------------------------------------------------- /test/special/node_modules/eslint-config-airbnb/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "eslint-config-airbnb" 3 | } 4 | -------------------------------------------------------------------------------- /test/special/node_modules/eslint-config-airbnb/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/node_modules/eslint-config-airbnb/react.js -------------------------------------------------------------------------------- /test/special/node_modules/eslint-config-preset/index.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /test/special/node_modules/eslint-config-preset/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "eslint-config-preset" 3 | } 4 | -------------------------------------------------------------------------------- /test/special/node_modules/single-binary-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/node_modules/single-binary-package/package.json -------------------------------------------------------------------------------- /test/special/node_modules/webpack/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'webpack'; 2 | -------------------------------------------------------------------------------- /test/special/prettier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/prettier.js -------------------------------------------------------------------------------- /test/special/react17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/react17.js -------------------------------------------------------------------------------- /test/special/serverless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/serverless.js -------------------------------------------------------------------------------- /test/special/tslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/tslint.js -------------------------------------------------------------------------------- /test/special/ttypescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/ttypescript.js -------------------------------------------------------------------------------- /test/special/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/special/webpack.js -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depcheck/depcheck/HEAD/test/utils.js --------------------------------------------------------------------------------