-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.81 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.81 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "react-native-ussd",
"title": "React Native Ussd",
"version": "1.1.1",
"description": "USSD implementation for React Native with advanced features like interactive sessions, carrier detection, response parsing, and analytics",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"files": [
"README.md",
"android",
"index.js",
"index.d.ts",
"src",
"ios",
"react-native-ussd.podspec"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint:js": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/isharaux/react-native-ussd.git",
"baseUrl": "https://github.com/isharaux/react-native-ussd.git"
},
"bugs": {
"url": "https://github.com/isharaux/react-native-ussd/issues"
},
"homepage": "https://github.com/isharaux/react-native-ussd#readme",
"keywords": [
"react-native",
"ussd",
"ussd-dial",
"ussd-codes",
"ussd-session",
"mobile",
"telecom",
"sim",
"dual-sim",
"carrier",
"balance-check",
"data-bundles",
"airtime",
"interactive-ussd",
"ussd-parser",
"ussd-validator",
"android",
"ios"
],
"author": {
"name": "Ishara Abeykoon",
"email": "isharaux@gmail.com"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": "^19.0.0",
"react-native": "^0.79.2"
},
"devDependencies": {
"@babel/core": "^7.27.3",
"@babel/preset-env": "^7.27.2",
"@react-native/babel-preset": "^0.79.2",
"babel-jest": "^30.0.0-beta.3",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"jest": "^29.7.0",
"react": "^19.0.0",
"react-native": "^0.79.2",
"react-test-renderer": "^19.1.0"
}
}