{
  "name": "babel-plugin-inline-json",
  "version": "2.1.0",
  "repository": "gkatsev/babel-plugin-inline-json",
  "license": "MIT",
  "authors": [
    "Matt Williams <mwilliams@change.org> (https://github.com/mwilliams-change)",
    "Gary Katsevman <git@gkatsev.com> (http://gkatsev.com)"
  ],
  "main": "lib/index.js",
  "devDependencies": {
    "@babel/cli": "^7.14.5",
    "@babel/core": "^7.14.5",
    "@babel/preset-env": "^7.14.5",
    "@babel/register": "^7.14.5",
    "mocha": "^9.0.0"
  },
  "scripts": {
    "clean": "rm -rf lib",
    "build": "babel src -d lib",
    "watch": "babel -w src -d lib",
    "example-cjs": "babel example-cjs/input.js -o example-cjs/output.js",
    "example-esm": "babel example-esm/input.js -o example-esm/output.js",
    "preexample": "npm run build",
    "example": "npm run example-cjs && npm run example-esm",
    "pretest": "npm run build",
    "test": "mocha --require @babel/register",
    "test:watch": "npm run test -- --watch",
    "prepublishOnly": "npm run clean && npm run build"
  },
  "keywords": [
    "babel",
    "plugin",
    "babel-plugin"
  ],
  "dependencies": {
    "@babel/types": "^7.14.5",
    "resolve": "^1.20.0"
  }
}
