forked from phonegap/phonegap-plugin-push
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.42 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
{
"name": "phonegap-plugin-push",
"description": "Register and receive push notifications.",
"types": "./types/index.d.ts",
"version": "2.2.3",
"homepage": "http://github.com/phonegap/phonegap-plugin-push#readme",
"repository": {
"type": "git",
"url": "git://github.com/phonegap/phonegap-plugin-push.git"
},
"bugs": {
"url": "https://github.com/phonegap/phonegap-plugin-push/issues"
},
"cordova": {
"id": "phonegap-plugin-push",
"platforms": [
"ios",
"android",
"windows",
"browser"
]
},
"keywords": [
"ecosystem:cordova",
"ecosystem:phonegap",
"cordova-ios",
"cordova-android",
"cordova-windows8",
"cordova-windows",
"cordova-wp8",
"cordova-browser"
],
"engines": {
"cordovaDependencies": {
"1.8.2": {
"cordova": ">=3.6.3",
"cordova-android": ">=4.0.0",
"cordova-ios": ">=4.1.0"
},
"<2.0.0": {
"cordova-ios": ">=4.3.0",
"cordova-android": ">=6.0.0",
"cordova": ">=6.4.0"
},
"2.0.0": {
"cordova-ios": ">=4.4.0",
"cordova-android": ">=6.2.1",
"cordova": ">=7.0.0"
},
"<2.1.2": {
"cordova-ios": ">=4.4.0",
"cordova-android": ">=6.3.0",
"cordova": ">=7.1.0"
},
"<2.2.0": {
"cordova-ios": ">=4.5.0",
"cordova-android": ">=6.3.0",
"cordova": ">=7.1.0"
},
"2.2.0": {
"cordova-ios": ">=4.5.0",
"cordova-android": ">=7.1.0",
"cordova": ">=7.1.0"
}
}
},
"author": "Adobe PhoneGap Team",
"license": "MIT",
"scripts": {
"build": "babel src/js --out-dir www",
"build:watch": "nodemon -w ./src/js -e js -x npm run build",
"eslint": "node node_modules/.bin/eslint src/js",
"jasmine": "jasmine-node --color spec",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"test": "npm run build && npm run jasmine"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-preset-es2015": "^6.9.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"jasmine-node": "1.14.5",
"nodemon": "^1.9.2",
"pluginpub": "^0.0.9"
},
"dependencies": {
"babel-plugin-add-header-comment": "^1.0.3",
"install": "^0.8.2"
}
}