forked from AlexDisler/cordova-plugin-inapppurchase
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.52 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
{
"name": "cordova-plugin-inapppurchase",
"version": "1.2.0",
"description": "A lightweight cordova plugin for in app purchases on iOS and Android with a simple promise based API.",
"main": "www/index-ios.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register --require babel-polyfill test/*",
"watch": "mocha --watch --compilers js:babel-core/register --require babel-polyfill test/*",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git://github.com/AlexDisler/cordova-plugin-inapppurchase.git"
},
"keywords": [
"cordova",
"ecosystem:cordova",
"purchase",
"purchases",
"cordova-android",
"cordova-ios",
"payments",
"in",
"app",
"promise",
"promises",
"android",
"ios",
"itunes",
"google",
"play",
"ionic"
],
"author": {
"name": "Alex Disler",
"email": "[email protected]",
"url": "alexdisler.com"
},
"license": "MIT",
"homepage": "https://github.com/AlexDisler/cordova-plugin-inapppurchase",
"devDependencies": {
"babel-core": "6.5.2",
"babel-plugin-syntax-async-functions": "6.5.0",
"babel-plugin-transform-regenerator": "6.5.2",
"babel-polyfill": "6.5.0",
"babel-preset-es2015": "6.5.0",
"gulp": "3.9.1",
"gulp-add-src": "^0.2.0",
"gulp-babel": "6.1.2",
"gulp-concat": "2.6.0",
"gulp-plumber": "1.1.0",
"gulp-util": "^3.0.7",
"mocha": "^2.4.5",
"vinyl-source-stream": "^1.1.0"
}
}