{
  "name": "first-order-logic",
  "version": "1.3.0",
  "description": "First order logic library.",
  "main": "dist/index.js",
  "umd:main": "dist/index.umd.js",
  "module": "dist/index.mjs",
  "source": "src/index.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/ivsaez/first-order-logic.git"
  },
  "scripts": {
    "test": "jest",
    "prebuild": "npm run test",
    "build": "microbundle",
    "prepublish": "npm run build",
    "tsc": "tsc",
    "watch": "tsc --watch"
  },
  "keywords": [
    "first",
    "order",
    "logic"
  ],
  "author": "Ivan Saez Zamora",
  "license": "MIT",
  "devDependencies": {
    "@babel/preset-env": "^7.16.11",
    "@types/jest": "^27.4.1",
    "@types/node": "^17.0.21",
    "babel-jest": "^27.5.1",
    "eslint": "^8.11.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-prettier": "^4.0.0",
    "jest": "^27.5.1",
    "microbundle": "^0.14.2",
    "prettier": "^2.6.0",
    "ts-jest": "^27.1.3",
    "ts-node": "^10.7.0",
    "typescript": "^4.6.2"
  },
  "lint-staged": {
    "*.js": [
      "prettier --write",
      "eslint --fix",
      "git add"
    ],
    "*.ts": [
      "prettier --write",
      "eslint --fix",
      "git add"
    ],
    "*.{json,md}": [
      "prettier --write",
      "git add"
    ]
  },
  "files": [
    "dist",
    "package.json",
    "README.md"
  ]
}
