forked from balthazar/react-native-zeroconf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1009 Bytes
/
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
{
"name": "react-native-zeroconf",
"version": "0.9.0",
"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"
},
"keywords": [
"react-component",
"react-native",
"zeroconf",
"bonjour",
"avahi",
"network",
"lan",
"ios",
"android",
"network-discovery",
"discovery"
],
"author": "Balthazar Gronon <[email protected]>",
"license": "MIT",
"dependencies": {
"events": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.0",
"babel-preset-react-native": "^1.9.0",
"eslint": "^3.3.0",
"eslint-config-zavatta": "^4.2.0"
},
"eslintConfig": {
"extends": [
"zavatta"
]
},
"babel": {
"presets": [
"react-native"
]
}
}