forked from ionic-team/cordova-plugin-ionic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 2.84 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
{
"name": "cordova-plugin-ionic",
"version": "5.2.7-0",
"cordova": {
"id": "cordova-plugin-ionic",
"platforms": [
"android",
"ios"
]
},
"types": "types/IonicCordova.d.ts",
"description": "Ionic Cordova SDK",
"engines": {
"cordovaDependencies": {
">5.0.0": {
"cordova-plugin-splashscreen": ">=5.0.1",
"cordova-plugin-file": ">=6.0.1",
"cordova-plugin-webview": ">=2.1.0"
},
"4.1.7": {
"cordova-plugin-splashscreen": ">=5.0.1"
},
"3.1.3": {
"cordova-plugin-splashscreen": ">=5.0.1"
},
"2.0.4": {
"cordova-plugin-splashscreen": ">=4.0.0"
}
}
},
"scripts": {
"apply-dev": "npm run build && ./apply-changes.sh",
"create-dev": "./create-local-app.sh",
"clean": "rimraf dist",
"lint": "tslint --config tslint.json --project tsconfig.json",
"precommit": "npm run lint",
"watch": "tsc -w",
"watch-dev": "watch 'npm run apply-dev' ./www",
"build": "npm run clean && tsc",
"sync-plugin-xml": "sync-cordova-xml2 package.json plugin.xml --output=plugin.xml",
"version": "npm run sync-plugin-xml && git add plugin.xml && ./update-plugin-version-code.sh",
"prepublishOnly": "npm run build",
"test": "echo 'We should really get unit tests running'",
"release": "npm run build && np",
"docs": "./scripts/docs.sh"
},
"repository": "https://github.com/ionic-team/cordova-plugin-ionic.git",
"issue": "https://github.com/ionic-team/cordova-plugin-ionic/issues",
"bugs": {
"url": "https://github.com/ionic-team/cordova-plugin-ionic/issues"
},
"keywords": [
"ionic",
"cordova",
"deploy",
"liveupdates",
"mobile",
"hybrid",
"ecosystem:cordova",
"cordova-android",
"cordova-ios"
],
"dependencies": {
"@types/cordova-plugin-file-transfer": "^1.6.2",
"mkpath": ">=1.0.0",
"node-version-compare": ">=1.0.1",
"plist": ">=1.2.0",
"xml2js": ">=0.4"
},
"author": "Ionic",
"contributors": [
{
"name": "Max Lynch",
"email": "[email protected]"
},
{
"name": "William Pelrine",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"@types/cordova": "0.0.34",
"cordova-plugin-file": "^6.0.1",
"jest": "^22.4.3",
"np": "^3.0.4",
"rimraf": "^2.6.2",
"sync-cordova-xml2": "0.0.2",
"ts-jest": "^22.4.2",
"tslint": "^5.9.1",
"tslint-ionic-rules": "0.0.14",
"typedoc": "^0.11.1",
"typedoc-plugin-markdown": "^1.1.6",
"typescript": "^2.6.2",
"watch": "^1.0.2"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
".(ts)": "./node_modules/ts-jest/preprocessor.js"
},
"testRegex": "tests/.*\\.(ts|js)$"
}
}