{
    "name": "@koush/push-receiver",
    "version": "3.1.4",
    "description": "A module to subscribe to GCM/FCM and receive notifications within a node process.",
    "main": "dist/client.js",
    "types": "dist/client.d.ts",
    "files": [
        "dist",
        "package*",
        "*.md"
    ],
    "scripts": {
        "protos:convert": "mkdirp dist && yarn pbjs -t static-module --force-long --wrap commonjs -o ./dist/protos.js ./src/protos/*.proto",
        "protos:ts": "yarn pbts -o ./dist/protos.d.ts ./dist/protos.js",
        "protos:dev": "yarn pbts -o ./src/protos.d.ts ./dist/protos.js",
        "protos:build": "yarn protos:convert && yarn protos:ts && yarn protos:dev",
        "build": "yarn clean && yarn protos:build && yarn tsc",
        "compile": "yarn protos:build && yarn tsc --incremental",
        "prepublish": "yarn build",
        "test": "jest",
        "lint": "yarn eslint src --ext .ts",
        "clean": "rimraf ./dist",
        "precommit": "yarn lint && yarn build",
        "prepare": "yarn prepublish"
    },
    "repository": {
        "type": "git",
        "url": "git+ssh://git@github.com/eneris/push-receiver.git"
    },
    "keywords": [
        "push",
        "service",
        "fcm",
        "gcm",
        "notifications",
        "node",
        "electron",
        "receiver"
    ],
    "author": "MatthieuLemoine",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/eneris/push-receiver/issues"
    },
    "homepage": "https://github.com/eneris/push-receiver#readme",
    "devDependencies": {
        "@types/jest": "^29.2.4",
        "@types/node": "^18.11.15",
        "@typescript-eslint/eslint-plugin": "^5.46.1",
        "@typescript-eslint/parser": "^5.46.1",
        "eslint": "^8.29.0",
        "eslint-plugin-jest": "^27.1.6",
        "husky": "^8.0.2",
        "jest": "^29.3.1",
        "mkdirp": "^1.0.4",
        "protobufjs-cli": "^1.0.2",
        "rimraf": "^3.0.2",
        "ts-jest": "^29.0.3",
        "typescript": "^4.9.4",
        "yargs": "^17.6.2"
    },
    "dependencies": {
        "axios": "^1.2.1",
        "http_ece": "^1.0.5",
        "long": "^5.2.1",
        "protobufjs": "^7.1.2"
    },
    "engines": {
        "node": ">=14"
    }
}
