{
  "_args": [
    [
      "hashids@2.2.8",
      "D:\\ASHWIN\\BITBUCKET\\FDSHUTTERS\\FD\\fdui"
    ]
  ],
  "_from": "hashids@2.2.8",
  "_id": "hashids@2.2.8",
  "_inBundle": false,
  "_integrity": "sha512-OI6rsk/OqyX60nBsqxnNl3R7CDv9eMOgxzipshZwXE6cUcBcEyHf8rNDlWVdQJZK3TEynILYybCsNUEQfJsdLA==",
  "_location": "/hashids",
  "_phantomChildren": {},
  "_requested": {
    "type": "version",
    "registry": true,
    "raw": "hashids@2.2.8",
    "name": "hashids",
    "escapedName": "hashids",
    "rawSpec": "2.2.8",
    "saveSpec": null,
    "fetchSpec": "2.2.8"
  },
  "_requiredBy": [
    "/"
  ],
  "_resolved": "https://registry.npmjs.org/hashids/-/hashids-2.2.8.tgz",
  "_spec": "2.2.8",
  "_where": "D:\\ASHWIN\\BITBUCKET\\FDSHUTTERS\\FD\\fdui",
  "author": {
    "name": "hashids.org",
    "email": "npm@invent.life",
    "url": "https://github.com/hashids"
  },
  "browserslist": [
    "last 2 version",
    "> 0.5%",
    "maintained node versions",
    "not dead"
  ],
  "bugs": {
    "url": "https://github.com/niieani/hashids.js/issues"
  },
  "contributors": [
    {
      "name": "Ivan Akimov",
      "email": "ivan@barreleye.com",
      "url": "https://twitter.com/IvanAkimov"
    },
    {
      "name": "Bazyli Brzóska",
      "email": "npm@invent.life",
      "url": "https://twitter.com/niieani"
    }
  ],
  "description": "Generate YouTube-like ids from numbers. Use Hashids when you do not want to expose your database ids to the user.",
  "devDependencies": {
    "@babel/cli": "^7.12.10",
    "@babel/core": "^7.12.10",
    "@babel/helper-plugin-utils": "^7.10.4",
    "@babel/plugin-syntax-bigint": "^7.8.3",
    "@babel/plugin-transform-destructuring": "^7.12.1",
    "@babel/plugin-transform-modules-umd": "^7.12.1",
    "@babel/plugin-transform-spread": "^7.12.1",
    "@babel/preset-env": "^7.12.11",
    "@babel/preset-typescript": "^7.12.7",
    "@babel/register": "^7.12.10",
    "@types/jest": "^26.0.19",
    "@types/node": "^14.14.14",
    "@typescript-eslint/eslint-plugin": "^4.10.0",
    "@typescript-eslint/parser": "^4.10.0",
    "@yarnpkg/pnpify": "^2.4.0",
    "coveralls": "^3.1.0",
    "eslint": "^7.15.0",
    "eslint-config-prettier": "^7.0.0",
    "eslint-import-resolver-node": "^0.3.4",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-jest": "^24.1.3",
    "husky": "^4.3.6",
    "jest": "^26.6.3",
    "nodemark": "^0.3.0",
    "prettier": "^2.2.1",
    "replace-in-files-cli": "^1.0.0",
    "require-from-web": "^1.2.0",
    "semantic-release": "^17.3.0",
    "terser": "^5.5.1",
    "ts-node": "^9.1.1",
    "typescript": "^4.1.3"
  },
  "exports": {
    ".": {
      "import": "./esm/index.js",
      "require": "./cjs/index.js"
    },
    "./cjs": {
      "require": "./cjs/index.js"
    },
    "./cjs/": {
      "require": "./cjs/"
    },
    "./esm/": {
      "import": "./esm/"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "cjs",
    "esm",
    "dist",
    "lib"
  ],
  "homepage": "http://hashids.org/javascript",
  "husky": {
    "hooks": {
      "pre-commit": "yarn run lint && yarn run test"
    }
  },
  "jest": {
    "collectCoverageFrom": [
      "lib/**/*.ts"
    ]
  },
  "keywords": [
    "hashids",
    "hashid",
    "hash",
    "ids",
    "youtube",
    "bitly",
    "obfuscate",
    "encode",
    "decode",
    "encrypt",
    "decrypt"
  ],
  "license": "MIT",
  "main": "cjs/index.js",
  "module": "esm/index.js",
  "name": "hashids",
  "prettier": {
    "semi": false,
    "tabWidth": 2,
    "singleQuote": true,
    "trailingComma": "all",
    "arrowParens": "always",
    "bracketSpacing": false
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/niieani/hashids.js.git"
  },
  "scripts": {
    "all": "yarn run lint && yarn run coverage && yarn run build && yarn run clean",
    "benchmark": "yarn ts-node -O '{\"module\": \"commonjs\"}' -T tests/benchmark",
    "build": "yarn run build:umd && yarn run build:esm && yarn run minify",
    "build:esm": "BABEL_MODULES=1 babel lib/hashids.ts --source-maps -o esm/index.js",
    "build:umd": "babel lib/hashids.ts --source-maps -o dist/hashids.js && replace-in-files --string='global.Hashids = mod.exports;' --replacement='global.Hashids = mod.exports.default;' dist/hashids.js",
    "clean": "rm -rf coverage yarn-debug.log",
    "coverage": "jest --coverage && cat coverage/lcov.info | coveralls",
    "lint": "eslint lib/* tests/*",
    "minify": "cd dist && terser hashids.js -o hashids.min.js --source-map \"url=hashids.min.js.map\" --compress --mangle",
    "prettier:check": "prettier --check lib/* tests*/*",
    "prettier:write": "prettier --write lib/* tests*/*",
    "release": "./release.sh",
    "semantic-release": "semantic-release",
    "test": "yarn prettier:check && yarn lint && yarn jest"
  },
  "version": "2.2.8"
}
