{
  "name": "node-apn-flitto",
  "description": "An interface to the Apple Push Notification service for Node.js by Flitto",
  "version": "4.3.0",
  "author": "Flitto",
  "keywords": [
    "apple",
    "push",
    "push notifications",
    "iOS",
    "apns",
    "notifications",
    "sandbox",
    "flitto",
    "nestjs"
  ],
  "main": "index.js",
  "types": "index.d.ts",
  "files": [
    "index.js",
    "index.d.ts",
    "lib/**/*.js",
    "!lib/**/*.spec.js",
    "!lib/**/*.mock.js"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/flitto/node-apn.git"
  },
  "bugs": {
    "url": "https://github.com/flitto/node-apn/issues"
  },
  "homepage": "https://github.com/flitto/node-apn#readme",
  "dependencies": {
    "jsonwebtoken": "^9.0.3",
    "node-forge": "^1.4.0"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/node": "^22.19.20",
    "eslint": "^10.4.1",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.6",
    "globals": "^17.6.0",
    "jest": "^30.4.2",
    "prettier": "^3.8.3"
  },
  "scripts": {
    "test": "jest",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "format": "prettier --check --ignore-path .gitignore .",
    "format:fix": "prettier --write --ignore-path .gitignore ."
  },
  "jest": {
    "moduleFileExtensions": [
      "js",
      "json",
      "ts"
    ],
    "coveragePathIgnorePatterns": [
      "index.js",
      ".mock.js"
    ],
    "rootDir": "lib",
    "testRegex": ".*\\.spec\\.js",
    "testEnvironment": "node",
    "collectCoverage": true,
    "collectCoverageFrom": [
      "**/*.(t|j)s"
    ],
    "coverageDirectory": "../coverage",
    "coverageReporters": [
      "clover",
      "json",
      "lcov",
      "text",
      "cobertura"
    ],
    "verbose": true
  },
  "engines": {
    "node": ">=20"
  },
  "license": "MIT",
  "directories": {
    "example": "examples",
    "lib": "lib",
    "test": "test"
  }
}
