{
  "name": "fast-json",
  "description": "A lightning fast on the fly JSON parser",
  "version": "3.0.0",
  "author": "Alejandro Santiago Nieto",
  "license": "ISC",
  "devDependencies": {
    "@types/jest": "^29.4.0",
    "@types/node": "^18.0.6",
    "@typescript-eslint/eslint-plugin": "^5.53.0",
    "@typescript-eslint/parser": "^5.53.0",
    "eslint": "^8.34.0",
    "eslint-config-prettier": "^8.6.0",
    "eslint-plugin-prettier": "^4.2.1",
    "jest": "^29.4.3",
    "prettier": "^2.8.4",
    "ts-jest": "^29.0.5",
    "typescript": "^4.7.4"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "build:watch": "npm run build -- --watch",
    "test": "jest",
    "test:watch": "npm test -- --watch",
    "test:cover": "npm test -- --coverage",
    "lint": "eslint --ext .ts .",
    "lint:fix": "npm run lint -- --fix",
    "check": "npm test && npm run lint",
    "prepublishOnly": "npm run check && npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/alemures/fast-json.git"
  }
}
