forked from appfeel/node-pushnotifications
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 2.78 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
{
"name": "node-pushnotifications",
"description": "A cross-platform push service for node.js",
"version": "1.1.12",
"author": {
"name": "AppFeel",
"email": "info@appfeel.com"
},
"scripts": {
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test-cover": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha test/ -- --require babel-core/register --recursive; opn ./coverage/lcov-report/index.html",
"test": "./node_modules/.bin/_mocha test/ --require babel-core/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": "info@appfeel.com"
},
"repository": {
"type": "git",
"url": "https://github.com/appfeel/node-pushnotifications.git"
},
"dependencies": {
"apn": "git+https://github.com/node-apn/node-apn.git#3.0.0",
"node-adm": "0.9.1",
"node-gcm": "1.0.2",
"ramda": "0.26.1",
"web-push": "3.3.5",
"wns": "0.5.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"dirty-chai": "^2.0.1",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"husky": "^3.0.2",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^6.2.0",
"opn-cli": "^3.1.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"release-it": "^12.3.5",
"sinon": "^1.17.7",
"sinon-chai": "^3.3.0"
},
"engines": {
"node": ">=6.x.x"
},
"eslintConfig": {
"ecmaVersion": 6,
"env": {
"es6": true,
"node": true
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"readmeFilename": "README.md",
"homepage": "https://github.com/appfeel/node-pushnotifications",
"license": "MIT",
"contributors": [
{
"name": "Alexander Friedl",
"email": "mail@alexanderfriedl.com",
"url": "https://github.com/alex-friedl"
}
]
}