forked from capacitor-community/stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.jsonc
72 lines (72 loc) · 1.6 KB
/
package.jsonc
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": "@capacitor-community/stripe",
"version": "1.0.1",
"description": "Stripe SDK bindings for Capacitor Applications",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"build": "npm run clean && tsc -p tsconfig.plugin.json",
"clean": "rm -rf ./dist",
"watch": "tsc --watch",
"prepublishOnly": "npm run build",
"test": "jest"
},
"author": "Zyra Media Inc. <[email protected]>",
"license": "MIT",
"dependencies": {
"@capacitor/core": "latest"
},
"devDependencies": {
"@capacitor/android": "~2.2.0",
"@capacitor/ios": "~2.2.0",
"@types/btoa": "^1.2.3",
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "~26.0.0",
"@types/node": "~14.0.13",
"@types/stripe": "~7.13.23",
"btoa": "^1.2.1",
"canvas": "^2.6.1",
"isomorphic-fetch": "~2.2.1",
"jest": "~26.0.1",
"standard-version": "^8.0.0",
"stripe": "~8.63.0",
"ts-jest": "~26.1.0",
"typescript": "~3.8.3"
},
"files": [
"dist/",
"ios/",
"android/",
"CapacitorStripe.podspec"
],
"keywords": [
"capacitor",
"plugin",
"native"
],
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
},
"repository": {
"type": "git",
"url": "https://github.com/capacitor-community/stripe"
},
"bugs": {
"url": "https://github.com/capacitor-community/stripe/issues"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"setupFiles": [
"<rootDir>/jest.setup.js"
],
"testEnvironmentOptions": {
"resources": "usable"
}
}
}