{
  "name": "token-types",
  "version": "1.0.1",
  "description": "Common token types for decoding and encoding binairy values",
  "author": {
    "name": "Borewit",
    "url": "https://github.com/Borewit"
  },
  "scripts": {
    "build": "npm run compile",
    "compile-src": "tsc -p src",
    "compile-test": "tsc -p test",
    "compile": "npm run compile-src && npm run compile-test",
    "prepare": "npm run compile",
    "lint-ts": "tslint 'src/**/*.ts' --exclude 'src/**/*.d.ts' 'test/**/*.ts' --exclude 'test/**/*.d.ts'",
    "lint-md": "remark -u preset-lint-recommended .",
    "lint": "npm run lint-ts && npm run lint-md",
    "test": "mocha --require ts-node/register test",
    "cover-test": "nyc npm run test",
    "coveralls": "npm run cover-test && nyc report --reporter=text-lcov | coveralls"
  },
  "engines": {
    "node": ">=0.1.98"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Borewit/token-types"
  },
  "license": "MIT",
  "main": "./lib/index.js",
  "typings": "lib/index",
  "bugs": {
    "url": "https://github.com/Borewit/token-types/issues"
  },
  "devDependencies": {
    "@types/chai": "^4.1.6",
    "@types/mocha": "^5.2.5",
    "@types/node": "^10.12.0",
    "chai": "^4.2.0",
    "coveralls": "^3.0.2",
    "mocha": "^5.2.0",
    "nyc": "^13.1.0",
    "remark-cli": "^6.0.0",
    "remark-preset-lint-recommended": "^3.0.2",
    "ts-node": "^7.0.1",
    "tslint": "^5.11.0",
    "typescript": "^3.1.3"
  },
  "dependencies": {},
  "remarkConfig": {
    "plugins": [
      "preset-lint-recommended"
    ]
  }
}
