This repository has been archived by the owner on Dec 16, 2024. It is now read-only.
forked from appidea/react-native-hce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.31 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
{
"name": "react-native-hce",
"version": "0.2.0",
"description": "Emulate smart cards inside React-Native application.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index.ts",
"source": "src/index",
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"android",
"ios",
"cpp",
"react-native-hce.podspec",
"!lib/typescript/example"
],
"scripts": {
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"typecheck": "tsc --noEmit",
"test": "jest",
"build": "bob build",
"release": "release-it",
"example": "npm i --cwd example",
"pods": "cd example && pod-install --quiet",
"bootstrap": "npm run example && npm i && npm run pods",
"docs": "typedoc",
"prepack": "bob build"
},
"keywords": [
"react-native",
"android",
"smartcard",
"nfc",
"hce"
],
"repository": "https://github.com/appidea/react-native-hce",
"author": "Mateusz Falkowski <[email protected]> (https://www.appidea.pl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/appidea/react-native-hce/issues"
},
"homepage": "https://github.com/appidea/react-native-hce#readme",
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/runtime": "^7.12.5",
"@tsconfig/react-native": "^2.0.2",
"@types/jest": "^26.0.0",
"@types/react": "~18.2.14",
"@types/react-native": "0.71.8",
"@types/react-test-renderer": "^18.0.0",
"buffer": "^6.0.3",
"prettier": "^2.8.8",
"react": "18.2.0",
"react-native": "0.72.5",
"react-native-builder-bob": "^0.20.4",
"sharp-cli": "^2.1.0",
"typescript": "^5.1.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"buffer": "*"
},
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"dependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.1.6"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json",
"tsc": "./node_modules/.bin/tsc"
}
]
]
}
}