-
Notifications
You must be signed in to change notification settings - Fork 319
/
package.json
79 lines (79 loc) · 1.82 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
{
"name": "react-native-nfc-manager",
"version": "3.16.1",
"description": "A NFC module for react native.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/whitedogg13/react-native-nfc-manager.git"
},
"bugs": {
"url": "https://github.com/whitedogg13/react-native-nfc-manager/issues"
},
"keywords": [
"react-native",
"android",
"ios",
"nfc"
],
"files": [
"src",
"ndef-lib",
"index.d.ts",
"android",
"ios",
"react-native-nfc-manager.podspec",
"app.plugin.js"
],
"license": "MIT",
"author": {
"name": "Richie",
"url": "https://github.com/whitedogg13"
},
"jest": {
"testEnvironment": "node"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-runtime"
]
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@react-native-community/eslint-config": "^3.2.0",
"@release-it/conventional-changelog": "^8.0.1",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"prettier": "^2.2.1",
"react": "^16.13.1",
"react-native": "^0.63.0",
"release-it": "^17.5.0",
"typescript": "^4.1.3",
"@expo/config-plugins": "~9.0.0"
},
"peerDependencies": {
"@expo/config-plugins": "8 || 9"
},
"peerDependenciesMeta": {
"@expo/config-plugins": {
"optional": true
}
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest -i",
"release": "dotenv -- release-it --"
}
}