UNPKG

apns-send

Version:

The apns-send npm package enables seamless integration of push notifications using the Apple Push Notification service (APNs) with the HTTP/2 protocol.

58 lines (57 loc) 1.49 kB
{ "name": "apns-send", "version": "1.0.5", "description": "The apns-send npm package enables seamless integration of push notifications using the Apple Push Notification service (APNs) with the HTTP/2 protocol.", "main": "dist/index.js", "types": "dist/index.d.ts", "keywords": [ "APN", "APNs", "push", "notification", "Apple", "iOS", "APNs", "package", "npm" ], "author": "Tuan Pham <tuanpm4@smartosc.com>", "license": "MIT", "engines": { "node": ">=14" }, "repository": { "url": "https://github.com/wtuanpm/apns-send" }, "dependencies": { "jsonwebtoken": "^9.0.0" }, "devDependencies": { "@tsconfig/node16": "^1.0.3", "@types/jsonwebtoken": "^9.0.1", "@types/mocha": "^10.0.1", "@types/node": "^18.11.18", "@types/should": "^13.0.0", "@typescript-eslint/eslint-plugin": "^5.48.1", "@typescript-eslint/parser": "^5.48.1", "dotenv": "^16.0.3", "esbuild": "^0.16.17", "eslint": "^8.31.0", "eslint-config-prettier": "^8.6.0", "eslint-plugin-prettier": "^4.2.1", "mocha": "^10.2.0", "prettier": "^2.8.2", "should": "^13.2.3", "ts-node": "^10.9.1", "typescript": "^4.9.4" }, "files": [ "dist" ], "scripts": { "build": "tsc -emitDeclarationOnly && ts-node -T ./esbuild.ts", "lint": "eslint src", "test": "mocha --require ts-node/register --exit --bail --slow 1000 --timeout 5000 ./test/test.ts", "ts": "ts-node -T" } }