-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.69 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": "@qonversion/web-sdk",
"title": "Qonversion Web SDK",
"version": "1.1.1",
"description": "Qonversion provides full in-app purchases infrastructure, so you do not need to build your own server for receipt validation. Implement in-app subscriptions, validate user receipts, check subscription status, and provide access to your app features and content using our Stripe wrapper, StoreKit wrapper and Google Play Billing wrapper.",
"main": "sdk/build/index.js",
"types": "sdk/build/index.d.ts",
"files": [
"sdk/build"
],
"scripts": {
"build": "yarn tsc",
"test": "jest ./sdk/src/__tests__",
"integrationTests": "jest ./sdk/src/__integrationTests__",
"lint": "eslint . --max-warnings=0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qonversion/web-sdk.git",
"baseUrl": "https://github.com/qonversion/web-sdk"
},
"homepage": "https://github.com/qonversion/web-sdk#readme",
"keywords": [
"web",
"qonversion",
"Stripe",
"Billing",
"in-app",
"Purchases"
],
"author": {
"name": "Qonversion",
"email": "[email protected]"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"babel-jest": "^28.1.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.4.2",
"ts-jest": "^29.1.0",
"typescript": "^4.7.3"
},
"dependencies": {
"@types/uuid": "^8.3.4",
"uuid": "^8.3.2"
}
}