├── .atom-build.json ├── .gitignore ├── .gitmodules ├── .vscode └── tasks.json ├── CONTRIBUTION.md ├── Jenkinsfile ├── LICENSE ├── README.md ├── src └── package-loader.os └── tests ├── finder.os ├── oscript.cfg └── readme.md /.atom-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBeaver/oscript-library/HEAD/.atom-build.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBeaver/oscript-library/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBeaver/oscript-library/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBeaver/oscript-library/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CONTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBeaver/oscript-library/HEAD/CONTRIBUTION.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBeaver/oscript-library/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBeaver/oscript-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBeaver/oscript-library/HEAD/README.md -------------------------------------------------------------------------------- /src/package-loader.os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBeaver/oscript-library/HEAD/src/package-loader.os -------------------------------------------------------------------------------- /tests/finder.os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBeaver/oscript-library/HEAD/tests/finder.os -------------------------------------------------------------------------------- /tests/oscript.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBeaver/oscript-library/HEAD/tests/oscript.cfg -------------------------------------------------------------------------------- /tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBeaver/oscript-library/HEAD/tests/readme.md --------------------------------------------------------------------------------