├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── bin └── check-engines ├── index.js ├── lib └── engine-test.js ├── package.json └── spec ├── check-engines_spec.js ├── fixtures ├── invalid-engines.json ├── multiple-engines.json ├── package.json └── yarn-engine.json └── setup.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kruppel/check-engines/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .* 2 | README.md 3 | spec 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kruppel/check-engines/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kruppel/check-engines/HEAD/README.md -------------------------------------------------------------------------------- /bin/check-engines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kruppel/check-engines/HEAD/bin/check-engines -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kruppel/check-engines/HEAD/index.js -------------------------------------------------------------------------------- /lib/engine-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kruppel/check-engines/HEAD/lib/engine-test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kruppel/check-engines/HEAD/package.json -------------------------------------------------------------------------------- /spec/check-engines_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kruppel/check-engines/HEAD/spec/check-engines_spec.js -------------------------------------------------------------------------------- /spec/fixtures/invalid-engines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kruppel/check-engines/HEAD/spec/fixtures/invalid-engines.json -------------------------------------------------------------------------------- /spec/fixtures/multiple-engines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kruppel/check-engines/HEAD/spec/fixtures/multiple-engines.json -------------------------------------------------------------------------------- /spec/fixtures/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kruppel/check-engines/HEAD/spec/fixtures/package.json -------------------------------------------------------------------------------- /spec/fixtures/yarn-engine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kruppel/check-engines/HEAD/spec/fixtures/yarn-engine.json -------------------------------------------------------------------------------- /spec/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kruppel/check-engines/HEAD/spec/setup.js --------------------------------------------------------------------------------