-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Switch to fetch-http2 * Use node 18 * Deps * Fix build include * Changelog
- Loading branch information
1 parent
3f67694
commit cdeeda3
Showing
13 changed files
with
765 additions
and
634 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,47 @@ | ||
{ | ||
"name": "apns2", | ||
"version": "10.1.0", | ||
"version": "11.0.0", | ||
"description": "Node client for connecting to Apple's Push Notification Service using the new HTTP/2 protocol with JSON web tokens.", | ||
"author": "Andrew Barba <[email protected]>", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=16.14.0" | ||
"node": ">=18" | ||
}, | ||
"repository": { | ||
"url": "https://github.com/AndrewBarba/apns2" | ||
}, | ||
"dependencies": { | ||
"jsonwebtoken": "^8.5.1" | ||
"fetch-http2": "^1.0.2", | ||
"jsonwebtoken": "^9.0.0" | ||
}, | ||
"devDependencies": { | ||
"@tsconfig/node16": "^1.0.2", | ||
"@types/jsonwebtoken": "^8.5.8", | ||
"@types/mocha": "^9.1.1", | ||
"@types/node": "^17.0.33", | ||
"@tsconfig/node18": "^1.0.1", | ||
"@types/jsonwebtoken": "^9.0.1", | ||
"@types/mocha": "^10.0.1", | ||
"@types/node": "^18.11.18", | ||
"@types/should": "^13.0.0", | ||
"dotenv": "^8.2.0", | ||
"esbuild": "^0.14.39", | ||
"eslint": "^8.15.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"mocha": "^10.0.0", | ||
"prettier": "^2.6.2", | ||
"@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.7.0", | ||
"typescript": "^4.6.4" | ||
"ts-node": "^10.9.1", | ||
"typescript": "^4.9.4" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"build": "tsc -emitDeclarationOnly && ts-node -T ./esbuild.ts", | ||
"lint": "eslint .", | ||
"test": "mocha --exit --bail --slow 1000 --timeout 5000 ./test/test.js", | ||
"lint": "eslint src", | ||
"test": "mocha --require ts-node/register --exit --bail --slow 1000 --timeout 5000 ./test/test.ts", | ||
"ts": "ts-node -T" | ||
} | ||
} |
Oops, something went wrong.