├── .babelrc ├── .eslintignore ├── .gitignore ├── .yarnclean ├── LICENSE ├── README.md ├── es6 └── index.js ├── examples ├── App.js ├── index.html ├── index.js ├── server.js └── webpack.config.js ├── lib └── index.js ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfrcr/predatorjs/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | lib 2 | webpack.config.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfrcr/predatorjs/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarnclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfrcr/predatorjs/HEAD/.yarnclean -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfrcr/predatorjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfrcr/predatorjs/HEAD/README.md -------------------------------------------------------------------------------- /es6/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfrcr/predatorjs/HEAD/es6/index.js -------------------------------------------------------------------------------- /examples/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfrcr/predatorjs/HEAD/examples/App.js -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfrcr/predatorjs/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfrcr/predatorjs/HEAD/examples/index.js -------------------------------------------------------------------------------- /examples/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfrcr/predatorjs/HEAD/examples/server.js -------------------------------------------------------------------------------- /examples/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfrcr/predatorjs/HEAD/examples/webpack.config.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfrcr/predatorjs/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfrcr/predatorjs/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfrcr/predatorjs/HEAD/yarn.lock --------------------------------------------------------------------------------