{
  "name": "cellocator-parser",
  "version": "2.2.9",
  "description": "Parse raw data from cellocator devices",
  "main": "src",
  "scripts": {
    "pretest": "eslint .",
    "test": "istanbul cover _mocha",
    "coveralls": "coveralls < coverage/lcov.info",
    "codeclimate": "codeclimate-test-reporter < coverage/lcov.info",
    "release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm publish",
    "release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm publish",
    "release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm publish"
  },
  "engines": {
    "node": ">=4"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/lgaticaq/cellocator-parser.git"
  },
  "keywords": [
    "cellocator",
    "avl",
    "gps",
    "tracking",
    "parser"
  ],
  "author": "Leonardo Gatica <lgatica@protonmail.com> (https://about.me/lgatica)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/lgaticaq/cellocator-parser/issues"
  },
  "homepage": "https://github.com/lgaticaq/cellocator-parser#readme",
  "dependencies": {
    "convert-base": "^0.1.0",
    "date-fns": "^1.28.2",
    "pad": "^1.0.2"
  },
  "devDependencies": {
    "chai": "^3.5.0",
    "codeclimate-test-reporter": "^0.4.1",
    "coveralls": "^2.12.0",
    "eslint": "^3.18.0",
    "generate-changelog": "^1.1.0",
    "istanbul": "^0.4.5",
    "mocha": "^3.2.0"
  },
  "eslintConfig": {
    "env": {
      "es6": true,
      "node": true,
      "mocha": true
    },
    "extends": "eslint:recommended",
    "rules": {
      "indent": [
        2,
        2
      ],
      "linebreak-style": [
        2,
        "unix"
      ],
      "quotes": [
        2,
        "single"
      ],
      "semi": [
        2,
        "always"
      ]
    }
  },
  "tonicExampleFilename": "example.js"
}
