{
  "name": "token-types",
  "version": "4.2.1",
  "description": "Common token types for decoding and encoding numeric and string values",
  "author": {
    "name": "Borewit",
    "url": "https://github.com/Borewit"
  },
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/Borewit"
  },
  "scripts": {
    "clean": "del-cli lib/**/*.js lib/***.js.map *.d.ts test/**/*.d.ts test/**/*.js test/**/*.js.map .nyc_output",
    "build": "npm run compile",
    "compile-src": "tsc --p lib",
    "compile-test": "tsc --p test",
    "compile": "npm run compile-src && npm run compile-test",
    "lint-ts": "tslint lib/index.ts --exclude '*.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 --require source-map-support/register --full-trace --recursive test/test-*.ts",
    "test-coverage": "nyc npm run test"
  },
  "engines": {
    "node": ">=10"
  },
  "r