forked from Nexxa/cordova-base64-to-gallery
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
76 lines (76 loc) · 1.61 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": "cordova-save-image-gallery",
"version": "0.0.27",
"description": "Cordova plugin to save base64 data as a png/jpg image into the device and applying compression if needed",
"license": "MIT",
"scripts": {
"lint": "eslint www/saveImageGallery.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agomezmoron/cordova-save-image-gallery.git"
},
"bugs": {
"url": "https://github.com/agomezmoron/cordova-save-image-gallery/issues"
},
"engines": [
{
"cordova": ">=3.0.0"
},
{
"node": ">=0.12"
}
],
"cordova": {
"id": "cordova-save-image-gallery",
"platforms": [
"ios",
"android",
"wp8"
]
},
"keywords": [
"image",
"base64",
"save",
"png",
"jpg",
"photo library",
"gallery",
"ecosystem:cordova",
"cordova-ios",
"cordova-android",
"cordova-wp8"
],
"author": {
"name": "Alejandro Gomez",
"email": "[email protected]",
"url": "http://github.com/agomezmoron"
},
"contributors": [
{
"name": "Ignacio Gonzalez",
"email": "[email protected]",
"url": "http://github.com/agomezmoron"
},
{
"name": "StefanoMagrassi",
"email": "[email protected]",
"url": "http://thinkwritedone.com"
},
{
"name": "Simba Zhang",
"email": "[email protected]",
"url": "http://www.tiegushi.com"
},
{
"name": "Bastian Meier",
"email": "[email protected]",
"url": "http://github.com/bastian-meie"
}
],
"devDependencies": {
"eslint": "1.10.3",
"nodemsg": "1.0.0"
}
}