-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.56 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.56 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
{
"name": "react-native-zeroconf",
"version": "0.14.0",
"description": "A Zeroconf discovery utility for react-native",
"main": "dist",
"scripts": {
"lint": "eslint src/*.js",
"format": "prettier --write src/*.js",
"build": "rm -rf dist && mkdir dist && babel src -o dist/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/Apercu/react-native-zeroconf.git"
},
"files": [
"src",
"dist",
"android",
"ios",
"react-native-zeroconf.podspec",
"NOTICE"
],
"keywords": [
"react-component",
"react-native",
"zeroconf",
"bonjour",
"avahi",
"network",
"lan",
"ios",
"android",
"network-discovery",
"discovery"
],
"author": "Balthazar Gronon <bgronon@gmail.com>",
"homepage": "https://github.com/balthazar/react-native-zeroconf",
"license": "MIT",
"dependencies": {
"events": "^3.0.0"
},
"peerDependencies": {
"react-native": ">=0.60"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@babel/preset-flow": "^7.23.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "14"
}
}
],
"@babel/preset-flow"
]
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}