-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.24 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "rollout-pushnotification",
"description": "A cross-platform push service for node.js",
"version": "1.7.6",
"author": {
"name": "Saurabh Kashyap",
"email": "saurabh@raindigi.com"
},
"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",
"commit": "git-cz",
"lint": "eslint {src,test}/**/*.js",
"format": "prettier --write \"**/*.{js,json,md,yml}\"",
"ci": "npm run build && npm run test-cover && npm run lint",
"acp": "git add . && npm run commit && git push origin master -f",
"prepublishOnly": "npm run lint && npm test && npm run build",
"release": "release-it",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"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/saurabharch/rollout-notification",
"email": "saurabh@raindigi.com"
},
"repository": {
"type": "git",
"url": "https://github.com/saurabharch/rollout-notification.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
},
"dependencies": {
"@parse/node-apn": "5.1.3",
"node-adm": "0.9.1",
"node-gcm": "1.0.5",
"ramda": "0.28.0",
"web-push": "3.4.5",
"wns": "0.5.4"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.8",
"@babel/preset-env": "7.16.11",
"@babel/register": "7.17.7",
"chai": "4.3.6",
"coveralls": "3.1.1",
"cz-conventional-changelog": "3.3.0",
"dirty-chai": "2.0.1",
"eslint": "8.12.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"mocha": "9.2.2",
"nyc": "15.1.0",
"opn-cli": "5.0.0",
"prettier": "2.6.1",
"pretty-quick": "3.1.3",
"release-it": "14.13.1",
"semantic-release": "19.0.2",
"sinon": "1.17.7",
"sinon-chai": "3.5.0"
},
"engines": {
"node": ">=12.x.x"
},
"eslintConfig": {
"ecmaVersion": 6,
"env": {
"es6": true,
"node": true
}
},
"readmeFilename": "README.md",
"homepage": "https://github.com/saurabharch/rollout-notification",
"license": "MIT",
"contributors": [
{
"name": "Alexander Friedl",
"email": "mail@alexanderfriedl.com",
"url": "https://github.com/alex-friedl"
},
{
"name": "appfeel",
"email": "info@appfeel.com",
"url": "https://github.com/appfeel"
},
{
"name": "Saurabh Kashyap",
"email": "saurabh@raindigi.com",
"url": "https://github.com/saurabharch"
}
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}