-
Notifications
You must be signed in to change notification settings - Fork 125
/
package.json
103 lines (103 loc) · 2.52 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "node-pushnotifications",
"description": "A cross-platform push service for node.js",
"version": "3.1.1",
"author": {
"name": "AppFeel",
"email": "[email protected]"
},
"scripts": {
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test-cover": "nyc --reporter=lcov mocha test/ -- --require @babel/register --recursive; open-cli ./coverage/lcov-report/index.html",
"test": "mocha test/ --require @babel/register --recursive",
"build": "./node_modules/.bin/babel src -d lib",
"lint": "eslint {src,test}/**/*.js",
"format": "prettier --write \"**/*.{js,json,md,yml}\"",
"ci": "npm run build && npm run test-cover && npm run lint",
"prepublishOnly": "npm run lint && npm test && npm run build",
"release": "release-it"
},
"keywords": [
"notifications",
"push",
"push notifications",
"apple",
"ios",
"iphone",
"ipad",
"apns",
"google",
"android",
"gcm",
"fcm",
"amazon",
"kindle",
"adm",
"microsoft",
"windows",
"wphone",
"windows phone",
"wns",
"mpns",
"webpush"
],
"main": "index.js",
"bugs": {
"url": "https://github.com/appfeel/node-pushnotifications",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/appfeel/node-pushnotifications.git"
},
"dependencies": {
"@parse/node-apn": "6.0.1",
"firebase-admin": "12.1.1",
"node-adm": "0.9.1",
"node-gcm": "1.1.4",
"ramda": "0.30.1",
"web-push": "3.6.7",
"wns": "0.5.4"
},
"devDependencies": {
"@babel/cli": "7.24.7",
"@babel/core": "7.24.7",
"@babel/preset-env": "7.24.7",
"@babel/register": "7.24.6",
"chai": "4.3.6",
"coveralls": "3.1.1",
"dirty-chai": "2.0.1",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"mocha": "10.4.0",
"nyc": "15.1.0",
"open-cli": "7.2.0",
"prettier": "3.3.2",
"release-it": "17.3.0",
"sinon": "1.17.7",
"sinon-chai": "3.5.0"
},
"engines": {
"node": ">=14.x.x"
},
"eslintConfig": {
"ecmaVersion": 6,
"env": {
"es6": true,
"node": true
}
},
"readmeFilename": "README.md",
"homepage": "https://github.com/appfeel/node-pushnotifications",
"license": "MIT",
"contributors": [
{
"name": "Alexander Friedl",
"email": "[email protected]",
"url": "https://github.com/alex-friedl"
}
]
}