This repository has been archived by the owner on Apr 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 156
/
package.json
147 lines (147 loc) · 4.15 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "phonegap",
"description": "PhoneGap command-line interface and node.js library.",
"version": "9.0.0+cordova.9.0.0",
"license": "Apache-2.0",
"homepage": "http://github.com/phonegap/phonegap-cli",
"repository": {
"type": "git",
"url": "git://github.com/phonegap/phonegap-cli.git"
},
"keywords": [
"cli",
"cordova",
"phonegap",
"phonegap build",
"phonegap/build"
],
"preferGlobal": true,
"main": "./lib/main.js",
"bin": {
"phonegap": "./bin/phonegap.js"
},
"scripts": {
"test": "npm run jasmine && npm run eslint",
"jasmine": "jasmine --config=spec/support/jasmine.json",
"eslint": "eslint lib bin spec",
"cover": "istanbul cover --print detail -x **/spec/** jasmine -- --color"
},
"engineStrict": true,
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"archiver": "^1.0.0",
"colors": "0.6.0-1",
"configstore": "1.4.0",
"connect-phonegap": "^0.25.0",
"cordova": "^9.0.0",
"insight": "^0.10.1",
"jasmine": "^3.2.0",
"minimist": "0.1.0",
"opener": "1.4.1",
"opn": "^4.0.2",
"os-name": "2.0.1",
"phonegap-build": "^1.0.0",
"pluralize": "0.0.4",
"prompt": "^1.0.0",
"qrcode-terminal": "0.9.4",
"request": "^2.88.0",
"shelljs": "0.1.4",
"update-notifier": "^0.6.0"
},
"devDependencies": {
"chdir": "0.0.x",
"eslint": "^4.7.2",
"eslint-config-semistandard": "^11.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "0.4.5"
},
"optionalDependencies": {},
"contributors": [
{
"name": "Michael Brooks",
"email": "[email protected]",
"url": "http://michaelbrooks.ca/"
},
{
"name": "Lorin Beer",
"email": "[email protected]",
"url": "http://www.ensufire.com/"
},
{
"name": "Jesse MacFadyen",
"url": "http://risingj.com"
},
{
"name": "Ryan Stewart",
"email": "[email protected]"
},
{
"name": "Herm Wong",
"email": "[email protected]"
},
{
"name": "Suraj Pindoria",
"email": "[email protected]"
},
{
"name": "Tommy-Carlos Williams",
"email": "[email protected]"
}
],
"templates": {
"blank": {
"description": "A blank and empty PhoneGap app.",
"npm": "phonegap-template-blank"
},
"csdk-image-editor": {
"description": "A template for using the Creative Cloud Image Editor.",
"npm": "phonegap-template-csdk-image-editor"
},
"hello-world": {
"description": "Default hello world app for PhoneGap.",
"npm": "phonegap-template-hello-world"
},
"framework7": {
"description": "Starter PhoneGap project for Framework7.",
"npm": "phonegap-template-framework7"
},
"push": {
"description": "An example app for getting started with push notifications",
"npm": "phonegap-template-push"
},
"react-hot-loader": {
"description": "Starter PhoneGap project using React.js, Babel, Webpack and Hot Reloading.",
"npm": "phonegap-template-react-hot-loader"
},
"single-vue": {
"description": "A single view layout template using Framework7 and Vue.js",
"npm": "phonegap-template-vue-f7-blank"
},
"split-vue": {
"description": "A split view layout template that degrades to a panel view using Framework7 and Vue.js",
"npm": "phonegap-template-vue-f7-split-view"
},
"star-track": {
"description": "An example app using Framework7 and the Spotify API.",
"npm": "phonegap-app-star-track"
},
"tabbed-vue": {
"description": "A tabbed layout template using Framework7 and Vue.js",
"npm": "phonegap-template-vue-f7-tabs"
},
"webvr": {
"description": "A WebVR and Google Cardboard demo ported from borismus/webvr-boilerplate.",
"npm": "phonegap-template-webvr"
},
"wikitude-augmented-reality": {
"description": "Augmented Reality demo app powered by the Wikitude plugin",
"npm": "phonegap-app-augmented-reality"
}
}
}