-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
62 lines (62 loc) · 1.28 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
{
"name": "react-native-zeroconf",
"version": "0.13.8",
"description": "A Zeroconf discovery utility for react-native",
"main": "dist",
"scripts": {
"lint": "eslint 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": [
"dist",
"android",
"ios",
"react-native-zeroconf.podspec"
],
"keywords": [
"react-component",
"react-native",
"zeroconf",
"bonjour",
"avahi",
"network",
"lan",
"ios",
"android",
"network-discovery",
"discovery"
],
"author": "Balthazar Gronon <[email protected]>",
"homepage": "https://github.com/balthazar/react-native-zeroconf",
"license": "MIT",
"dependencies": {
"events": "^3.0.0"
},
"peerDependencies": {
"react-native": ">=0.60"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.3",
"babel-preset-react-native": "^4.0.1",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-config-zavatta": "^6.0.3",
"prettier": "^1.19.1"
},
"eslintConfig": {
"extends": [
"zavatta",
"prettier"
]
},
"babel": {
"presets": [
"react-native"
]
}
}