{
  "name": "tmexchange",
  "version": "2.0.6",
  "description": "tmx2js and js2tmx converter tmx utils",
  "type": "module",
  "main": "./cjs/index.js",
  "exports": {
    ".": {
      "require": "./cjs/index.js",
      "default": "./esm/index.js"
    },
    "./tmx2js": {
      "require": "./cjs/tmx2js.js",
      "default": "./esm/tmx2js.js"
    },
    "./js2tmx": {
      "require": "./cjs/js2tmx.js",
      "default": "./esm/js2tmx.js"
    },
    "./cjs": {
      "default": "./cjs/index.js"
    },
    "./cjs/tmx2js": {
      "default": "./cjs/tmx2js.js"
    },
    "./cjs/js2tmx": {
      "default": "./cjs/js2tmx.js"
    },
    "./esm": {
      "default": "./esm/index.js"
    },
    "./esm/tmx2js": {
      "default": "./esm/tmx2js.js"
    },
    "./esm/js2tmx": {
      "default": "./esm/js2tmx.js"
    }
  },
  "module": "./esm/index.js",
  "dependencies": {
    "xml2js": "0.5.0"
  },
  "devDependencies": {
    "@babel/cli": "7.21.5",
    "@babel/core": "7.21.8",
    "@babel/preset-env": "7.21.5",
    "babel-plugin-add-module-exports": "1.0.4",
    "browserify": "17.0.0",
    "eslint": "8.41.0",
    "eslint-config-standard": "17.0.0",
    "eslint-plugin-import": "2.27.5",
    "eslint-plugin-node": "11.1.0",
    "eslint-plugin-promise": "6.1.1",
    "eslint-plugin-require-path-exists": "1.1.9",
    "eslint-plugin-standard": "4.1.0",
    "expect.js": "0.3.1",
    "mocha": "10.2.0",
    "uglify-js": "3.17.4"
  },
  "scripts": {
    "lint": "eslint .",
    "compile:esm": "rm -rf esm && mkdir esm && BABEL_ENV=esm babel lib -d esm",
    "compile:cjs": "rm -rf cjs && mkdir cjs && BABEL_ENV=cjs babel lib -d cjs && echo '{\"type\":\"commonjs\"}' > cjs/package.json",
    "compile": "npm run compile:esm && npm run compile:cjs",
    "browser": "browserify --standalone tmexchange cjs/index.js -o tmexchange.js && uglifyjs tmexchange.js --compress --mangle -o tmexchange.min.js",
    "build": "npm run compile && npm run replace-placeholders && npm run browser",
    "replace-placeholders": "node scripts/replacePlaceholders.js",
    "test": "npm run lint && npm run build && mocha test -R spec",
    "preversion": "npm run test && npm run build && git push",
    "postversion": "npm run build && git add . && git commit -m 'build' && git push && git push --tags"
  },
  "keywords": [
    "tmx",
    "json",
    "js",
    "translation"
  ],
  "author": "adrai",
  "license": "MIT",
  "homepage": "http://locize.com",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/locize/tmexchange.git"
  }
}
