{
  "name": "requirejs-esm-converter",
  "version": "2.2.0",
  "description": "Converts source RequireJS modules from AMD to ESM format.",
  "author": "Ferdinand Prantl <prantlf@gmail.com>",
  "license": "MIT",
  "licenses": [
    {
      "type": "MIT",
      "url": "https://github.com/prantlf/requirejs-esm-converter/blob/master/LICENSE"
    }
  ],
  "homepage": "https://github.com/prantlf/requirejs-esm-converter#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/prantlf/requirejs-esm-converter.git"
  },
  "bugs": {
    "url": "https://github.com/prantlf/requirejs-esm-converter/issues"
  },
  "engines": {
    "node": ">=14"
  },
  "type": "module",
  "main": "lib/index.cjs",
  "module": "lib/index.js",
  "types": "lib/index.d.ts",
  "bin": {
    "requirejs-to-esm": "bin/requirejs-to-esm.cjs"
  },
  "files": [
    "bin",
    "lib"
  ],
  "scripts": {
    "build": "rollup -c",
    "lint": "biome lint *.js bin lib test",
    "check": "teru-esm test/index.js",
    "cover": "c8 teru-esm test/index.js && c8 --no-clean bin/requirejs-to-esm.cjs -h && c8 --no-clean bin/requirejs-to-esm.cjs -V && cat test/input/amd-object.js | c8 --no-clean bin/requirejs-to-esm.cjs && cat test/input/esm.js | c8 --no-clean bin/requirejs-to-esm.cjs && c8 --no-clean bin/requirejs-to-esm.cjs -d test/input/amd-main.js && c8 --no-clean bin/requirejs-to-esm.cjs -p test/input/esm.js && c8 --no-clean bin/requirejs-to-esm.cjs test/input/invalid.txt && c8 --no-clean bin/requirejs-to-esm.cjs -X || c8 --no-clean bin/requirejs-to-esm.cjs -D -P \"none/*.js\" || c8 report -r text -r lcov",
    "test": "biome lint *.js bin lib test && c8 teru-esm test/index.js && c8 --no-clean bin/requirejs-to-esm.cjs -h && c8 --no-clean bin/requirejs-to-esm.cjs -V && cat test/input/amd-object.js | c8 --no-clean bin/requirejs-to-esm.cjs && cat test/input/esm.js | c8 --no-clean bin/requirejs-to-esm.cjs && c8 --no-clean bin/requirejs-to-esm.cjs -d test/input/amd-main.js && c8 --no-clean bin/requirejs-to-esm.cjs -p test/input/esm.js && c8 --no-clean bin/requirejs-to-esm.cjs test/input/invalid.txt && c8 --no-clean bin/requirejs-to-esm.cjs -X || c8 --no-clean bin/requirejs-to-esm.cjs -D -P \"none/*.js\" || c8 report -r text -r lcov"
  },
  "c8": {
    "reporter": []
  },
  "dependencies": {
    "fast-glob": "^3.3.3",
    "meriyah": "^7.1.0",
    "recast": "^0.23.11"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.14",
    "@rollup/plugin-commonjs": "^29.0.2",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "c8": "^11.0.0",
    "rollup": "^4.60.2",
    "tehanu": "^1.0.1",
    "tehanu-repo-coco": "^1.0.1",
    "tehanu-teru": "^1.0.1"
  },
  "keywords": [
    "requirejs",
    "converter",
    "convert",
    "amd",
    "esm",
    "es6"
  ]
}