-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
35 lines (35 loc) · 1.12 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "@pusher/push-notifications-server",
"version": "1.2.7",
"description": "NodeJS Server SDK for Pusher Push Notifications",
"main": "push-notifications.js",
"repository": "https://github.com/pusher/push-notifications-node",
"author": "Pusher <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"nock": "^13.5.6",
"prettier": "3.4.2",
"tsd": "^0.31.2"
},
"scripts": {
"format": "prettier \"./{*.js,*.d.ts}\" --write",
"lint": "npx eslint **/*.js && npx prettier \"./{*.js,*.d.ts}\" -l",
"test": "yarn test:ts && yarn test:unit && yarn test:integration",
"test:ts": "tsd .",
"test:integration": "jest --testPathPattern='/__tests__/integration/'",
"test:unit": "jest --testPathIgnorePatterns='/integration/'"
},
"keywords": [
"push notifications",
"notifications",
"pusher",
"realtime"
],
"types": "index.d.ts",
"dependencies": {
"jsonwebtoken": "^9.0.2"
}
}