{
  "license": "Apache-2.0",
  "type": "commonjs",
  "author": {
    "name": "Wouter van Heeswijk",
    "email": "woutervh@gmail.com",
    "url": "https://github.com/woutervh-/"
  },
  "name": "openlr-js",
  "description": "OpenLR implementation in JavaScript",
  "main": "lib/es5/index.js",
  "module": "lib/es6/index.js",
  "types": "lib/es6/index.d.js",
  "files": [
    "lib/*"
  ],
  "version": "3.2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/tomtom-international/openlr-js.git"
  },
  "scripts": {
    "clean": "rimraf lib/browser lib/es5 lib/es6",
    "build": "npm run clean && npm run lint && npm run build:es6 && npm run build:es5 && npm run build:browser",
    "build:browser": "rollup --config --bundleConfigAsCjs",
    "build:es5": "tsc --target ES5 --module CommonJS --outDir lib/es5 --declarationDir lib/es5",
    "build:es6": "tsc --target ES6 --module ES6 --outDir lib/es6 --declarationDir lib/es6",
    "lint": "tslint --project tsconfig.json",
    "test": "node test/sanity.cjs --source-maps"
  },
  "dependencies": {
    "@rollup/plugin-terser": "^0.4.4",
    "buffer": "^6.0.3"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^28.0.6",
    "@rollup/plugin-node-resolve": "^16.0.1",
    "@types/node": "^24.0.3",
    "rimraf": "^6.0.1",
    "rollup": "^4.44.0",
    "tslint": "^6.1.3",
    "typescript": "^5.8.3"
  }
}
