forked from Nexxa/cordova-base64-to-gallery
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.33 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
{
"name": "@goiarlabs/cordova-base64-to-gallery",
"version": "6.0.0-falopa",
"description": "Cordova plugin to save base64 data as a png image into the device",
"license": "MIT",
"scripts": {
"bump": "node ./scripts/bump_version",
"lint": "eslint www/base64ToGallery.js",
"test": "npm run lint",
"postversion": "npm run bump",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/@goiarlabs/cordova-base64-to-gallery.git"
},
"bugs": {
"url": "https://github.com/@goiarlabs/cordova-base64-to-gallery/issues"
},
"engines": [
{
"cordova": ">=3.0.0"
},
{
"node": ">=0.12"
}
],
"cordova": {
"id": "@goiarlabs/cordova-base64-to-gallery",
"platforms": [
"ios",
"android",
"wp8"
]
},
"keywords": [
"image",
"base64",
"save",
"photo library",
"gallery",
"ecosystem:cordova",
"cordova-ios",
"cordova-android",
"cordova-wp8"
],
"author": {
"name": "StefanoMagrassi",
"email": "[email protected]",
"url": "http://thinkwritedone.com"
},
"contributors": [
{
"name": "Simba Zhang",
"email": "[email protected]",
"url": "http://www.tiegushi.com"
}
],
"devDependencies": {
"eslint": "3.12.2",
"nodemsg": "1.1.0"
}
}