-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.38 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.38 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "react-native-hce",
"version": "0.3.0",
"description": "React Native HCE",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"android",
"ios",
"react-native-hce.podspec",
"!lib/typescript/example",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/build",
"!**/.idea",
"!**/.gradle",
"!**/Pods",
"!**/.DS_Store"
],
"scripts": {
"test": "jest",
"build": "tsc && esbuild ./src/index.ts --bundle --external:react --external:react-native --external:react --outdir=./dist --platform=node --format=esm --allow-overwrite --target=es2017",
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"docs": "typedoc"
},
"keywords": [
"react-native",
"android",
"smartcard",
"nfc",
"hce"
],
"repository": "https://github.com/appidea/react-native-hce",
"author": "Mateusz Falkowski <mateusz@appidea.pl> (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",
"dependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.1.6",
"@types/jest": "^29.5.12",
"jest": "^29.7.0"
},
"devDependencies": {
"@react-native/eslint-config": "0.74.87",
"@types/react": "^18.3.23",
"esbuild": "^0.25.8",
"eslint": "^8.0.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"react": "18.2.0",
"react-native": "0.74.5",
"typescript": "5.0.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/dist/"
]
},
"eslintConfig": {
"extends": [
"@react-native-community",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"eslintIgnore": [
"node_modules/",
"dist/",
"docs/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
}