-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.66 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.66 KB
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
{
"name": "@truconsent/consent-notice-react-native",
"version": "0.1.2",
"description": "React Native SDK for TruConsent consent banner",
"main": "src/index.ts",
"types": "src/index.ts",
"files": [
"src",
"README.md",
"DOCUMENTATION.md",
"INTEGRATION_GUIDE.md",
"package.json",
"tsconfig.json"
],
"scripts": {
"build": "npx --yes --package typescript@5.9.2 tsc --lib es2020,dom,dom.iterable --skipLibCheck src/services/rightsCenterApi.ts --noEmit",
"typecheck": "npx --yes --package typescript@5.9.2 tsc --lib es2020,dom,dom.iterable --skipLibCheck src/services/rightsCenterApi.ts --noEmit",
"typecheck:all": "npx --yes --package typescript@5.9.2 tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"react-native",
"consent",
"banner",
"privacy",
"gdpr"
],
"author": "",
"license": "MIT",
"peerDependencies": {
"i18next": "^25.6.0",
"react": ">=18.0.0",
"react-i18next": "^16.2.3",
"react-native": ">=0.70.0",
"react-native-webview": ">=11.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@types/jest": "^29.5.0",
"@types/react": "^18.2.0",
"@types/react-native": "^0.72.0",
"babel-jest": "^29.7.0",
"babel-preset-expo": "^54.0.10",
"jest": "^29.7.0",
"metro-react-native-babel-preset": "^0.76.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.0.0"
},
"dependencies": {
"@expo/metro-config": "^54.0.14",
"metro": "^0.83.3",
"metro-core": "^0.83.3",
"metro-runtime": "^0.83.3"
}
}