-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 2.38 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"$schema": "https://json.schemastore.org/package",
"name": "@adapty/react-native-ui",
"version": "3.1.0",
"description": "Extension to the Adapty SDK that allows you to easily add purchase screens to your application.",
"license": "MIT",
"author": "Vanya Dorofeyev <[email protected]> (https://github.com/divanc)",
"keywords": [
"react-native",
"adapty",
"purchases",
"in-apps",
"subscriptions",
"paywalls"
],
"repository": "https://github.com/adaptyteam/AdaptyUI-React-Native",
"homepage": "https://github.com/adaptyteam/AdaptyUI-React-Native#readme",
"bugs": {
"url": "https://github.com/adaptyteam/AdaptyUI-React-Native/issues"
},
"files": [
"src",
"dist",
"ios",
"!ios/build",
"!ios/ReactNativeUi.xcodeproj/project.xcworkspace",
"!ios/ReactNativeUi.xcodeproj/xcuserdata",
"*.podspec",
"android",
"!android/build",
"!android/gradle",
"!android/gradlew*",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"main": "dist/index.js",
"packageManager": "[email protected]",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"release": "release-it"
},
"peerDependencies": {
"react-native": ">= 0.60.0",
"react-native-adapty": ">=3.1.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "5.1.1",
"@types/jest": "29.5.0",
"@types/react": "^16.13.1",
"@types/react-native": "0.64.0",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "8.42.0",
"jest": "29.5.0",
"prettier": "2.8.8",
"react": "16.13.1",
"react-native": "0.63.0",
"react-native-adapty": "3.1.0",
"release-it": "15.11.0",
"typescript": "5.1.3"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
}
}