lgaticaq/tz-parser

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "tz-parser",
  "version": "3.1.3",
  "description": "Parse raw data from TZ-AVL devices",
  "main": "src",
  "scripts": {
    "lint": "eslint . --fix",
    "format": "prettier-standard 'src/**/*.js' 'test/**/*.js'",
    "precommit": "lint-staged",
    "pretest": "npm run lint -s && npm run format -s",
    "test": "istanbul cover _mocha",
    "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": ">=8"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/lgaticaq/tz-parser.git"
  },
  "keywords": [
    "tz-avl",
    "avl",
    "gps",
    "tracking",
    "parser"
  ],
  "author": "Leonardo Gatica <lgatica@protonmail.com> (https://about.me/lgatica)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/lgaticaq/tz-parser/issues"
  },
  "homepage": "https://github.com/lgaticaq/tz-parser#readme",
  "dependencies": {
    "crc": "3.8.0",
    "node-nmea": "1.0.4"
  },
  "devDependencies": {
    "chai": "4.3.6",
    "eslint": "4.19.1",
    "eslint-config-standard": "11.0.0",
    "eslint-plugin-import": "2.25.4",
    "eslint-plugin-node": "6.0.1",
    "eslint-plugin-promise": "3.8.0",
    "eslint-plugin-standard": "3.1.0",
    "generate-changelog": "1.8.0",
    "husky": "0.14.3",
    "istanbul": "0.4.5",
    "lint-staged": "7.3.0",
    "mocha": "5.2.0",
    "prettier-standard": "8.0.1"
  },
  "eslintConfig": {
    "extends": "standard",
    "rules": {
      "no-console": [
        "error"
      ]
    }
  },
  "eslintIgnore": [
    "coverage",
    "example.js"
  ],
  "lint-staged": {
    "src/**/*.js": [
      "eslint --fix",
      "prettier-standard",
      "git add"
    ],
    "test/**/*.js": [
      "eslint --fix",
      "prettier-standard",
      "git add"
    ]
  },
  "tonicExampleFilename": "example.js",
  "renovate": {
    "automerge": "minor",
    "extends": [
      ":library"
    ]
  }
}