{
    "name": "@querc/squidex-client",
    "version": "1.0.1",
    "description": "NodeJS client for the [Squidex](https://squidex.io/) CMS",
    "main": "./dist/index.js",
    "module": "./dist/index.js",
    "types": "./dist/index.d.ts",
    "scripts": {
        "prepublish": "npm run lint && npm run test && npm run build && npm run build:docs",
        "format": "prettier --write \"src/**/*.ts\" \"examples/**/*.ts\"",
        "prebuild": "rimraf dist",
        "build:tsc": "tsc",
        "build": "npm run build:types && npm run build:js",
        "build:types": "tsc --emitDeclarationOnly",
        "build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
        "build:docs": "typedoc ./src/",
        "type-check": "tsc --noEmit",
        "type-check:watch": "npm run type-check -- --watch",
        "lint": "eslint src/**/*.ts",
        "lint:fix": "eslint --fix src/**/*.ts",
        "test": "jest",
        "test:watch": "jest --watch --coverage",
        "test:coverage": "jest --coverage",
        "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
        "examples": "ts-node ./examples",
        "examples:debug": "node --inspect -r tsconfig-paths/register -r ts-node/register ./examples/index.ts"
    },
    "repository": {
        "type": "git",
        "url": "git+ssh://git@bitbucket.org/lindsayevans/node-squidex-client.git"
    },
    "bugs": {
        "url": "https://bitbucket.org/lindsayevans/node-squidex-client/issues"
    },
    "keywords": [
        "squidex"
    ],
    "author": "Lindsay Evans <linz@linz.id.au>",
    "license": "MIT",
    "homepage": "https://bitbucket.org/lindsayevans/node-squidex-client#readme",
    "devDependencies": {
        "@babel/cli": "^7.7.0",
        "@babel/core": "^7.7.2",
        "@babel/plugin-proposal-class-properties": "^7.7.0",
        "@babel/plugin-proposal-numeric-separator": "^7.2.0",
        "@babel/plugin-proposal-object-rest-spread": "^7.6.2",
        "@babel/plugin-transform-runtime": "^7.6.2",
        "@babel/preset-env": "^7.7.1",
        "@babel/preset-typescript": "^7.7.2",
        "@types/jest": "^24.0.23",
        "@types/node": "^12.12.8",
        "@types/node-fetch": "^2.5.3",
        "@typescript-eslint/eslint-plugin": "^2.8.0",
        "@typescript-eslint/parser": "^2.8.0",
        "babel-jest": "^24.9.0",
        "dotenv": "^8.2.0",
        "eslint": "^6.6.0",
        "eslint-config-prettier": "^6.6.0",
        "eslint-plugin-prettier": "^3.1.1",
        "jest": "^24.9.0",
        "jest-junit": "^9.0.0",
        "prettier": "^1.19.1",
        "rimraf": "^3.0.0",
        "ts-jest": "^24.1.0",
        "ts-node": "^8.5.2",
        "tsconfig-paths": "^3.9.0",
        "typedoc": "^0.15.2",
        "typescript": "^3.7.2"
    },
    "dependencies": {
        "node-fetch": "^2.6.0"
    }
}
