-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 873 Bytes
/
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
{
"name": "gulp-cordova-plugin",
"version": "3.0.0",
"description": "Add plugins to your cordova project",
"license": "MIT",
"repository": "SamVerschueren/gulp-cordova-plugin",
"author": {
"name": "Sam Verschueren",
"email": "sam.verschueren@gmail.com"
},
"main": "index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"test": "xo && nyc ava",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
"index.js"
],
"keywords": [
"gulp",
"gulpjs",
"cordova",
"plugin",
"add"
],
"dependencies": {
"cordova-lib": "^8.1.0",
"gulp-util": "^3.0.8",
"is-plain-obj": "^1.1.0",
"p-limit": "^2.0.0",
"through2": "^2.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.2",
"nyc": "^13.0.1",
"sinon": "^6.3.5",
"xo": "^0.23.0"
}
}