forked from apache/cordova-lib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
176 lines (176 loc) · 3.97 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
{
"author": "Apache Software Foundation",
"name": "cordova-lib",
"license": "Apache-2.0",
"description": "Apache Cordova tools core lib and API",
"version": "8.0.1-dev",
"repository": {
"type": "git",
"url": "https://github.com/apache/cordova-lib"
},
"bugs": {
"url": "https://issues.apache.org/jira/browse/CB",
"email": "[email protected]"
},
"main": "cordova-lib.js",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"aliasify": "^2.1.0",
"cordova-common": "^2.2.0",
"cordova-create": "^1.1.0",
"cordova-fetch": "^1.3.0",
"cordova-js": "^4.2.2",
"cordova-serve": "^2.0.0",
"dep-graph": "1.1.0",
"detect-indent": "^5.0.0",
"dependency-ls": "^1.1.1",
"elementtree": "0.1.6",
"glob": "7.1.1",
"init-package-json": "^1.2.0",
"nopt": "4.0.1",
"opener": "1.4.2",
"plist": "2.0.1",
"properties-parser": "0.3.1",
"q": "1.0.1",
"request": "2.79.0",
"semver": "^5.3.0",
"shelljs": "0.3.0",
"tar": "2.2.1",
"underscore": "1.8.3",
"unorm": "1.4.1",
"valid-identifier": "0.0.1",
"xcode": "^1.0.0"
},
"devDependencies": {
"codecov": "^2.1.0",
"eslint": "^4.2.0",
"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",
"jasmine": "^2.5.2",
"rewire": "^2.5.2"
},
"scripts": {
"test": "npm run eslint && npm run unit-tests && npm run e2e-tests",
"eslint": "eslint src spec integration-tests",
"unit-tests": "jasmine JASMINE_CONFIG_PATH=spec/jasmine.json",
"cover": "istanbul cover --root src --print detail jasmine JASMINE_CONFIG_PATH=spec/jasmine.json",
"e2e-tests": "jasmine JASMINE_CONFIG_PATH=integration-tests/jasmine.json"
},
"contributors": [
{
"name": "Brian LeRoux",
"email": "[email protected]"
},
{
"name": "Fil Maj",
"email": "[email protected]"
},
{
"name": "Mike Reinstein",
"email": "[email protected]"
},
{
"name": "Darry Pogue",
"email": "[email protected]"
},
{
"name": "Michael Brooks",
"email": "[email protected]"
},
{
"name": "Braden Shepherdson",
"email": "[email protected]"
},
{
"name": "Gord Tanner",
"email": "[email protected]"
},
{
"name": "Tim Kim",
"email": "[email protected]"
},
{
"name": "Benn Mapes",
"email": "[email protected]"
},
{
"name": "Michael Wolf",
"email": "[email protected]"
},
{
"name": "Andrew Grieve",
"email": "[email protected]"
},
{
"name": "Bryan Higgins",
"email": "[email protected]"
},
{
"name": "Don Coleman",
"email": "[email protected]"
},
{
"name": "Germano Gabbianelli",
"email": "[email protected]"
},
{
"name": "Ian Clelland",
"email": "[email protected]"
},
{
"name": "Lucas Holmqust",
"email": "[email protected]"
},
{
"name": "Matt LeGrand",
"email": "[email protected]"
},
{
"name": "Michal Mocny",
"email": "[email protected]"
},
{
"name": "Sam Breed",
"email": "[email protected]"
},
{
"name": "Tommy-Carlos Williams",
"email": "[email protected]"
},
{
"name": "Rubén Norte",
"email": "[email protected]"
},
{
"name": "Germano Gabbianelli",
"email": "[email protected]"
},
{
"name": "Steven Gill",
"email": "[email protected]"
},
{
"name": "Jesse",
"email": "[email protected]"
},
{
"name": "Anis Kadri"
},
{
"name": "Ryan Willoughby"
},
{
"name": "Brett Rudd"
},
{
"name": "Shazron Abdullah"
}
]
}