forked from appfeel/node-pushnotifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.8 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
{
"name": "node-pushnotifications",
"description": "A cross-platform push service for node.js",
"version": "1.0.10",
"author": {
"name": "AppFeel",
"email": "[email protected]"
},
"scripts": {
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- test/ --compilers jsx:babel-core/register --recursive",
"build": "./node_modules/.bin/babel src -d lib",
"prepublish": "npm run lint && npm test && npm run build",
"lint": "eslint src/**/*.js",
"test-alone": "./node_modules/.bin/_mocha test/ --compilers jsx:babel-core/register --recursive"
},
"keywords": [
"notifications",
"push",
"push notifications",
"apple",
"ios",
"iphone",
"ipad",
"apns",
"google",
"android",
"gcm",
"fcm",
"amazon",
"kindle",
"adm",
"microsoft",
"windows",
"wphone",
"windows phone",
"wns",
"mpns"
],
"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": {
"apn": "^2.1.1",
"node-adm": "^0.9.1",
"node-gcm": "^0.14.4",
"wns": "^0.5.3"
},
"engines": {
"node": "*"
},
"readmeFilename": "README.md",
"homepage": "https://github.com/appfeel/node-pushnotifications",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-preset-es2015": "^6.16.0",
"chai": "^3.5.0",
"eslint": "^3.8.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.1.2",
"sinon": "^1.17.6"
},
"license": "MIT"
}