├── .gitignore ├── LICENSE ├── README.md ├── config.json ├── installer.sh ├── package.json └── verify.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/** 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikhir-arora/basicverify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikhir-arora/basicverify/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikhir-arora/basicverify/HEAD/config.json -------------------------------------------------------------------------------- /installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikhir-arora/basicverify/HEAD/installer.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikhir-arora/basicverify/HEAD/package.json -------------------------------------------------------------------------------- /verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikhir-arora/basicverify/HEAD/verify.js --------------------------------------------------------------------------------