{
  "name": "n2words",
  "version": "4.0.0",
  "description": "Convert numbers to words in 71 languages with zero dependencies. Supports BigInt, decimals, and browser/Node.js environments.",
  "keywords": [
    "number-to-words",
    "num2words",
    "n2words",
    "to-words",
    "spell-out",
    "cardinal-numbers",
    "ordinal-numbers",
    "currency-to-words",
    "i18n",
    "tree-shakeable",
    "zero-dependencies",
    "esm",
    "typescript",
    "bigint"
  ],
  "homepage": "https://github.com/forzagreen/n2words#readme",
  "bugs": {
    "url": "https://github.com/forzagreen/n2words/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/forzagreen/n2words.git"
  },
  "license": "MIT",
  "author": "Wael TELLAT",
  "contributors": [
    "Tyler Vigario (https://github.com/TylerVigario)"
  ],
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/forzagreen"
  },
  "type": "module",
  "sideEffects": false,
  "exports": {
    "./*": {
      "types": "./src/*.d.ts",
      "import": "./src/*.js",
      "default": "./src/*.js"
    },
    "./utils/*": null,
    "./package.json": "./package.json"
  },
  "files": [
    "src/**/*.js",
    "src/**/*.d.ts",
    "dist/**/*.js",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "bench": "node --expose-gc bench/index.js",
    "browserslist": "browserslist",
    "browserslist:coverage": "browserslist --coverage",
    "build": "npm run clean && npm run build:types && npm run build:dist",
    "build:dist": "npm run clean:dist && rollup -c",
    "build:types": "npm run clean:types && tsc --project tsconfig.build.json",
    "clean": "npm run clean:dist && npm run clean:types",
    "clean:all": "npm run clean && npm run clean:artifacts",
    "clean:artifacts": "rimraf coverage .nyc_output",
    "clean:dist": "rimraf dist",
    "clean:types": "rimraf \"src/**/*.d.ts\" --glob",
    "coverage": "c8 npm run test:unit",
    "docs:languages": "node scripts/generate-languages-md.js",
    "lang:add": "node scripts/add-language.js",
    "lint": "npm run lint:js && npm run lint:md",
    "lint:fix": "npm run lint:js -- --fix && npm run lint:md -- --fix",
    "lint:js": "standard",
    "lint:md": "markdownlint-cli2",
    "prepare:husky": "husky",
    "test": "npm run test:unit && npm run build:types",
    "test:unit": "ava \"test/*.test.js\" \"test/utils/*.test.js\""
  },
  "ava": {
    "extensions": [
      "js"
    ],
    "files": [
      "test/*.test.js",
      "test/utils/*.test.js"
    ],
    "timeout": "30s",
    "concurrency": 8,
    "workerThreads": false
  },
  "standard": {
    "ignore": [
      "!.vscode/"
    ]
  },
  "c8": {
    "all": true,
    "include": [
      "src/"
    ],
    "exclude": [
      "src/**/*.d.ts"
    ],
    "reporter": [
      "lcov",
      "text",
      "json-summary"
    ]
  },
  "lint-staged": {
    "*.{js,cjs,mjs}": [
      "standard --fix"
    ],
    "*.md": [
      "markdownlint-cli2 --fix"
    ]
  },
  "devDependencies": {
    "@babel/core": "^7.29.0",
    "@babel/preset-env": "^7.29.0",
    "@commitlint/cli": "^20.4.3",
    "@commitlint/config-conventional": "^20.4.3",
    "@commitlint/format": "^20.4.3",
    "@rollup/plugin-babel": "^7.0.0",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "@rollup/plugin-terser": "^1.0.0",
    "@rollup/plugin-virtual": "^3.0.2",
    "ava": "^7.0.0",
    "benchmark": "^2.1.4",
    "browserslist": "^4.28.1",
    "c8": "^11.0.0",
    "chalk": "^5.6.2",
    "husky": "^9.1.7",
    "lint-staged": "^16.3.2",
    "markdownlint-cli2": "^0.21.0",
    "rimraf": "^6.1.3",
    "rollup": "^4.59.0",
    "standard": "^17.1.2",
    "typescript": "^5.9.3"
  },
  "engines": {
    "node": ">=20"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  }
}
