forked from phonegap/phonegap-plugin-push
-
Notifications
You must be signed in to change notification settings - Fork 283
/
package.json
76 lines (76 loc) · 2.05 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
{
"name": "@havesource/cordova-plugin-push",
"version": "5.0.0-dev.0",
"description": "Register and receive push notifications.",
"scripts": {
"build": "babel src/js --out-dir www",
"build:watch": "nodemon -w ./src/js -e js -x npm run build",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"jasmine": "jasmine --config=spec/unit.json",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"test": "npm run build && npm run lint && npm run jasmine"
},
"repository": "github:havesource/cordova-plugin-push",
"keywords": [
"ecosystem:cordova",
"cordova-ios",
"cordova-android",
"cordova-browser"
],
"author": "Erisu",
"license": "MIT",
"bugs": "https://github.com/havesource/cordova-plugin-push/issues",
"homepage": "https://github.com/havesource/cordova-plugin-push#readme",
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.11",
"@babel/preset-env": "^7.22.14",
"@cordova/eslint-config": "^5.0.0",
"babel-plugin-add-header-comment": "^1.0.3",
"fs-extra": "^10.1.0",
"jasmine": "^5.1.0",
"nodemon": "^3.0.1",
"nopt": "^5.0.0",
"xml2js": "^0.6.2"
},
"engines": {
"cordovaDependencies": {
"5.0.0": {
"cordova": ">=10.0.0",
"cordova-android": ">=12.0.0",
"cordova-ios": ">=6.0.0"
},
"4.0.0": {
"cordova": ">=10.0.0",
"cordova-android": ">=12.0.0",
"cordova-ios": ">=6.0.0"
},
"3.0.0": {
"cordova": ">=10.0.0",
"cordova-android": ">=9.0.0",
"cordova-ios": ">=6.0.0"
},
"2.0.0": {
"cordova": ">=10.0.0",
"cordova-android": ">=8.0.0",
"cordova-ios": ">=6.0.0"
},
"1.0.0": {
"cordova": ">=10.0.0",
"cordova-android": ">=8.0.0",
"cordova-ios": ">=5.1.1"
}
}
},
"types": "./types/index.d.ts",
"cordova": {
"id": "@havesource/cordova-plugin-push",
"platforms": [
"ios",
"android",
"browser"
]
}
}