{
  "name": "guid-ts",
  "version": "1.1.2",
  "description": "NPM package for generating and managing globally unique identifiers (GUIDs)",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "scripts": {
    "prepare": "npm run build",
    "prepublishOnly": "npm test && npm run lint",
    "preversion": "npm run lint",
    "version": "npm run format && git add -A src",
    "postversion": "git push && git push --tags",
    "test": "jest --config jestconfig.json --coverage",
    "build": "tsc",
    "lint": "eslint --ext .ts ./src",
    "lint:fix": "eslint --fix --ext .ts ./src",
    "docs": "typedoc src"
  },
  "files": [
    "lib/**/*"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/piraces/guid-ts.git"
  },
  "keywords": [
    "typescript",
    "guid",
    "id",
    "uuid",
    "identifier"
  ],
  "author": "Raúl Piracés Alastuey <raul@piraces.dev> (https://piraces.dev)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/piraces/guid-ts/issues"
  },
  "homepage": "https://github.com/piraces/guid-ts#readme",
  "devDependencies": {
    "@types/jest": "^27.4.0",
    "@typescript-eslint/eslint-plugin": "^5.10.0",
    "@typescript-eslint/parser": "^5.10.0",
    "eslint": "^8.7.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-config-typescript": "^3.0.0",
    "eslint-plugin-prettier": "^4.0.0",
    "jest": "^27.4.7",
    "prettier": "^2.5.1",
    "ts-jest": "^27.1.3",
    "typedoc": "^0.22.11",
    "typescript": "^4.5.5"
  }
}
