-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
51 lines (51 loc) · 1.24 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
{
"name": "cordova-plugin-stripe",
"version": "1.5.3",
"description": "Cordova plugin that lets you use Stripe's Native SDKs for Android and iOS",
"files": [
"src",
"www",
"plugin.xml",
"typings/CordovaStripe.d.ts"
],
"scripts": {
"docs": "jsdoc2md --template \"scripts/doc.template.md\" \"www/**/*.js\" > README.md",
"jshint": "jshint www && jshint src && jshint tests"
},
"cordova": {
"id": "cordova-plugin-stripe",
"platforms": [
"android",
"ios",
"browser"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ihadeed/cordova-plugin-stripe.git"
},
"keywords": [
"ecosystem:cordova",
"cordova-android",
"cordova-ios",
"cordova-browser",
"stripe",
"phonegap",
"cordova-plugin"
],
"author": "Ibby Hadeed <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ihadeed/cordova-plugin-stripe/issues"
},
"homepage": "https://github.com/ihadeed/cordova-plugin-stripe#readme",
"typings": "./typings/CordovaStripe.d.ts",
"dependencies": {
"@types/cordova": "~0.0.34"
},
"devDependencies": {
"dmd-plugin-cordova-plugin": "^0.1.4",
"jsdoc-to-markdown": "^3.0.0",
"jshint": "^2.9.4"
}
}