{
  "name": "i18next-fs-backend",
  "version": "2.1.1",
  "private": false,
  "type": "module",
  "main": "./cjs/index.js",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./index.d.ts",
      "require": "./cjs/index.js",
      "default": "./esm/index.js"
    },
    "./cjs": {
      "types": "./index.d.ts",
      "default": "./cjs/index.js"
    },
    "./esm": {
      "types": "./index.d.ts",
      "default": "./esm/index.js"
    }
  },
  "module": "./esm/index.js",
  "types": "./index.d.ts",
  "devDependencies": {
    "@babel/cli": "7.19.3",
    "@babel/core": "7.20.5",
    "@babel/preset-env": "7.20.2",
    "babel-plugin-add-module-exports": "1.0.4",
    "dtslint": "4.2.1",
    "eslint": "8.30.0",
    "eslint-config-standard": "17.0.0",
    "eslint-plugin-import": "2.26.0",
    "eslint-plugin-n": "15.6.0",
    "eslint-plugin-promise": "6.1.1",
    "eslint-plugin-require-path-exists": "1.1.9",
    "eslint-plugin-standard": "5.0.0",
    "expect.js": "0.3.1",
    "i18next": "22.4.6",
    "js-yaml": "4.1.0",
    "json5": "2.2.2",
    "mocha": "10.2.0",
    "tslint": "5.20.1",
    "tsd": "0.25.0",
    "typescript": "4.9.4",
    "uglify-js": "3.17.4"
  },
  "description": "i18next-fs-backend is a backend layer for i18next using in Node.js and for Deno to load translations from the filesystem.",
  "keywords": [
    "i18next",
    "i18next-backend",
    "i18next-fs-backend"
  ],
  "homepage": "https://github.com/i18next/i18next-fs-backend",
  "repository": {
    "type": "git",
    "url": "git@github.com:i18next/i18next-fs-backend.git"
  },
  "bugs": {
    "url": "https://github.com/i18next/i18next-fs-backend/issues"
  },
  "license": "MIT",
  "scripts": {
    "copy:json5": "cp node_modules/json5/dist/index.mjs lib/formats/json5.js",
    "copy:yaml": "cp node_modules/js-yaml/dist/js-yaml.mjs lib/formats/yaml.js",
    "copy": "rm -rf lib/formats && mkdir lib/formats && npm run copy:json5 && npm run copy:yaml",
    "lint": "eslint .",
    "compile:esm": "rm -rf esm && mkdir esm && BABEL_ENV=esm babel lib -d esm && cp lib/fs.cjs esm/fs.cjs && cp lib/path.cjs esm/path.cjs",
    "compile:cjs": "rm -rf cjs && mkdir cjs && BABEL_ENV=cjs babel lib -d cjs && echo '{\"type\":\"commonjs\"}' > cjs/package.json && cp lib/fs.cjs cjs/fs.js && cp lib/path.cjs cjs/path.js && node -e \"fs.writeFileSync('cjs/readFile.js', fs.readFileSync('cjs/readFile.js').toString().replace('fs.cjs', 'fs.js').replace('path.cjs', 'path.js'))\" && node -e \"fs.writeFileSync('cjs/writeFile.js', fs.readFileSync('cjs/writeFile.js').toString().replace('fs.cjs', 'fs.js'))\"",
    "compile": "npm run copy && npm run compile:esm && npm run compile:cjs",
    "build": "npm run compile",
    "test": "npm run lint && npm run build && mocha test -R spec --exit --experimental-modules && npm run test:typescript",
    "test:typescript": "tslint --project tsconfig.json && tsd",
    "test:deno": "deno test test/deno/*.js --allow-read --allow-write --no-check",
    "preversion": "npm run test && npm run build && git push",
    "postversion": "git push && git push --tags"
  },
  "tsd": {
    "directory": "test/typescript"
  }
}
