* Split core lib into multiple files * Refactor data encoding methods * Refactor data masking process * Improve qr code generation process * Increase minimum required node version to 0.10 * Add linter * Add tests and tests coverage * Update travis config to fix compilation issues * Add examples folder * Add missing license tag in package.json * Update build script and add sourcemap support * Publish only strictly needed files on npm * Update readme
20 lines
255 B
YAML
20 lines
255 B
YAML
language: node_js
|
|
|
|
node_js:
|
|
- "0.10"
|
|
- "0.12"
|
|
- "4.2.1"
|
|
|
|
env:
|
|
- CXX=g++-4.8
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|
|
|
|
before_install:
|
|
- sudo apt-get update
|
|
- sudo apt-get install -y libgif-dev
|