{
  "name": "declarapi-runtime",
  "version": "1.0.0",
  "description": "Declarative API runtime",
  "engines": {
    "node": ">=13.0.0",
    "npm": ">=6.0.0"
  },
  "keywords": [
    "api",
    "declarative",
    "type",
    "typescript",
    "json",
    "runtime"
  ],
  "main": "./index.js",
  "types": "./index.d.ts",
  "type": "module",
  "sideEffects": false,
  "prepublish": "tsc",
  "repository": {
    "type": "git",
    "url": "https://github.com/mmagyar/declarapi-runtime.git"
  },
  "scripts": {
    "build": "tsc",
    "watch": "tsc --watch",
    "prepack": "npm run build && npm run build:commonjs",
    "build:commonjs": "tsc --module \"CommonJS\" -t \"es6\" --outDir \"./cjs\"",
    "test": "npm run build && npm run test:coverage",
    "test:coverage": "c8 --all --exclude \"{**/*.spec.*,**/*.d.ts,cjs/**,coverage/**}\" --reporter=lcov --reporter=text --reporter=json ava --verbose",
    "test:fast": "ava",
    "test:watch": "tsc-watch --onSuccess \"c8 --all --exclude \\\"{**/*.spec.*,**/*.d.ts,cjs/**,coverage/**}\\\" --reporter=lcov ava\"",
    "standard": "standardx **/*.ts",
    "standard:fix": "standardx --fix **/*.ts"
  },
  "standardx": {
    "env": [],
    "parser": "@typescript-eslint/parser",
    "plugins": [
      "@typescript-eslint/eslint-plugin"
    ]
  },
  "eslintConfig": {
    "rules": {
      "no-unused-vars": "off",
      "@typescript-eslint/no-unused-vars": "error"
    }
  },
  "author": "mmagyar.com",
  "license": "MIT",
  "devDependencies": {
    "@types/commander": "^2.12.2",
    "@types/form-data": "^2.5.0",
    "@types/node": "^14.10.1",
    "@types/node-fetch": "^2.5.7",
    "@types/uuid": "^8.3.0",
    "@typescript-eslint/eslint-plugin": "^4.1.0",
    "@typescript-eslint/parser": "^4.1.0",
    "ava": "^3.12.1",
    "c8": "^7.3.0",
    "standardx": "^5.0.0",
    "tsc-watch": "^4.2.9",
    "typescript": "^4.0.2"
  },
  "dependencies": {
    "@elastic/elasticsearch": "^7.9.0",
    "form-data": "^3.0.0",
    "microtil": "^2.0.3",
    "node-fetch": "^2.6.1",
    "uuid": "^8.3.0",
    "yaschva": "^2.1.1"
  },
  "ava": {
    "files": [
      "!cjs"
    ]
  }
}
