├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── index.js ├── lib ├── bipso.js ├── bipsoObject.js └── defs │ └── defs.js ├── package.json └── test └── bipso.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/bipso/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/bipso/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/bipso/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/bipso/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/bipso/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/bipso'); -------------------------------------------------------------------------------- /lib/bipso.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/bipso/HEAD/lib/bipso.js -------------------------------------------------------------------------------- /lib/bipsoObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/bipso/HEAD/lib/bipsoObject.js -------------------------------------------------------------------------------- /lib/defs/defs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/bipso/HEAD/lib/defs/defs.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/bipso/HEAD/package.json -------------------------------------------------------------------------------- /test/bipso.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/bipso/HEAD/test/bipso.test.js --------------------------------------------------------------------------------