{
    "name": "privacy.com",
    "version": "1.1.1",
    "description": "Wrapper for the Privacy.com API using Axios and TypeScript",
    "keywords": [
        "privacy.com",
        "issuing",
        "typescript",
        "axios",
        "credit card",
        "api",
        "javascript"
    ],
    "scripts": {
        "build": "yarn clean && tsc",
        "build:watch": "yarn clean && yarn compile -w",
        "build:docs": "./node_modules/typedoc/bin/typedoc --out docs src",
        "clean": "del dist",
        "test": "nyc mocha -r ts-node/register -r dotenv/config test/**/*.spec.ts",
        "coverage": "nyc report --reporter=text-lcov | node ./node_modules/coveralls/bin/coveralls.js",
        "lint": "./node_modules/eslint/bin/eslint.js src --ext .ts --fix",
        "lint:tests": "./node_modules/eslint/bin/eslint.js test --ext .ts --fix",
        "compile": "tsc --declaration",
        "prettier": "prettier --write \"./*.{ts,js,json,md}\" \"./src/**/*.{ts,js,json,md}\" \"./test/**/*.{ts,js,json,md}\"",
        "format": "yarn lint && yarn prettier",
        "prepublishOnly": "yarn format && yarn test && yarn build"
    },
    "bugs": {
        "url": "https://github.com/jeremigendron/privacy.com/issues"
    },
    "license": "MIT",
    "author": {
        "name": "Jérémi Gendron",
        "url": "https://jeremigendron.info?ref=privacy.com"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/jeremigendron/privacy.com"
    },
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "dependencies": {
        "axios": "^0.19.2"
    },
    "devDependencies": {
        "@types/mocha": "^7.0.2",
        "@types/node": "^13.11.1",
        "@typescript-eslint/eslint-plugin": "^2.27.0",
        "@typescript-eslint/parser": "^2.27.0",
        "chai": "^4.2.0",
        "coveralls": "^3.0.11",
        "del-cli": "^3.0.0",
        "dotenv": "^8.2.0",
        "eslint": "^6.8.0",
        "eslint-config-prettier": "^6.10.1",
        "eslint-plugin-prettier": "^3.1.3",
        "eslint-plugin-simple-import-sort": "^5.0.2",
        "mocha": "^7.1.1",
        "nyc": "^15.0.1",
        "prettier": "^2.0.4",
        "ts-node": "^8.8.2",
        "tslint": "^6.1.1",
        "tslint-config-prettier": "^1.18.0",
        "typedoc": "^0.17.4",
        "typescript": "^3.8.3"
    }
}
