-
-
Notifications
You must be signed in to change notification settings - Fork 535
/
package.json
72 lines (72 loc) · 2.21 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
{
"name": "cordova-plugin-purchase",
"version": "13.11.1",
"description": "Cordova Purchase plugin for iOS, Android, Windows (AppStore, Play, UWP)",
"cordova": {
"id": "cordova-plugin-purchase",
"platforms": [
"android",
"ios",
"wp8"
]
},
"repository": {
"type": "git",
"url": "https://github.com/j3k0/cordova-plugin-purchase.git"
},
"keywords": [
"ecosystem:cordova",
"cordova-android",
"cordova-ios",
"cordova-windows",
"cordova",
"phonegap",
"purchase",
"storekit",
"ios",
"android",
"play",
"appstore",
"iaptic",
"fovea"
],
"scripts": {
"test": "cd tests && jest",
"typedoc": "typedoc --hideGenerator --excludePrivate --excludeProtected --excludeInternal --disableSources --readme src/ts/README.md --hideBreadcrumbs true --hideInPageTOC false --out api --pretty --plugin typedoc-plugin-markdown --theme markdown --basePath src/ts src/ts/store.ts",
"typedoc-html": "typedoc --plugin typedoc-theme-hierarchy --theme hierarchy --hideGenerator --excludePrivate --excludeProtected --excludeInternal --disableSources --readme src/ts/README.md --out api-html --pretty --basePath src/ts src/ts/store.ts",
"typedoc-dev": "typedoc --hideGenerator --readme src/ts/README.md --out api-dev --pretty --plugin typedoc-plugin-markdown --theme markdown --basePath src/ts src/ts/store.ts"
},
"author": "Jean-Christophe Hoelt <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/j3k0/cordova-plugin-purchase/issues"
},
"homepage": "https://github.com/j3k0/cordova-plugin-purchase",
"devDependencies": {
"@types/jest": "^29.5.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.13",
"typedoc-github-wiki-theme": "^1.1.0",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-theme-hierarchy": "^4.1.2",
"typescript": "^4.7.4"
},
"main": "./www/store.js",
"types": "./www/store.d.ts",
"files": [
"/package.json",
"/package-lock.json",
"/plugin.xml",
"/README.md",
"/RELEASE_NOTES.md",
"/src/android",
"/src/ios",
"/src/ts",
"/src/windows",
"/tests",
"/tsconfig.ts",
"/www"
]
}