forked from MySiteApp/node-safari-push-notifications
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "node-safari-push-notifications",
"version": "1.2.3",
"description": "Helper methods for generating resources required by Apple's Safari Push Notifications (http://apple.co/1P39vbY)",
"main": "src/index.js",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"install": "node-gyp rebuild",
"test": "jest --coverage",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git@github.com:ekiziltas/node-safari-push-notifications.git"
},
"keywords": [
"safari",
"push",
"notifications",
"apple"
],
"author": "Eray KIZILTAS <eray@sarsistem.com.>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ekiziltas/node-safari-push-notifications/issues"
},
"homepage": "https://github.com/ekiziltas/node-safari-push-notifications",
"dependencies": {
"bindings": "^1.5.0",
"jszip": "^3.5.0",
"nan": "^2.14.1"
},
"gypfile": true,
"devDependencies": {
"concat-stream": "^1.6.2",
"coveralls": "^3.1.0",
"jest": "^26.5.0"
},
"jest": {
"coverageReporters": [
"lcov"
]
}
}