{
  "name": "remove-types",
  "author": "Chris Freeman",
  "version": "1.0.0",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/cafreeman/remove-types"
  },
  "keywords": [
    "typescript",
    "babel",
    "types"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "index.d.ts",
  "files": [
    "*.d.ts",
    "*.d.ts.map",
    "dist",
    "src"
  ],
  "scripts": {
    "ts:cjs": "tsc -p ts/cjs.tsconfig.json",
    "ts:esm": "tsc -p ts/esm.tsconfig.json",
    "ts:typedefs": "tsc -p ts/types.tsconfig.json && mv defs/* . && rimraf defs",
    "ts:all": "yarn ts:esm && yarn ts:cjs && yarn ts:typedefs",
    "build": "yarn clean && yarn ts:all",
    "clean": "rimraf ./*.d.ts ./*.d.ts.map ./dist",
    "lint": "eslint src test",
    "prepublishOnly": "yarn test && yarn build",
    "postpublish": "yarn clean",
    "release": "release-it",
    "test": "jest",
    "test:watch": "jest --watch"
  },
  "devDependencies": {
    "@types/babel__core": "^7.1.18",
    "@types/jest": "^27.4.0",
    "@typescript-eslint/eslint-plugin": "^5.10.0",
    "@typescript-eslint/parser": "^5.10.0",
    "eslint": "^8.7.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-prettier": "^4.0.0",
    "jest": "^27.4.7",
    "release-it": "^14.12.4",
    "rimraf": "^3.0.2",
    "ts-jest": "^27.1.3",
    "typescript": "^4.5.5"
  },
  "dependencies": {
    "@babel/core": "^7.16.10",
    "@babel/plugin-syntax-decorators": "^7.16.7",
    "@babel/plugin-transform-typescript": "^7.16.8",
    "prettier": "^2.5.1"
  },
  "release-it": {
    "github": true
  }
}
