forked from tradle/react-native-udp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.21 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
{
"name": "react-native-udp",
"version": "3.1.0",
"description": "node's dgram API for react-native",
"main": "UdpSockets.js",
"scripts": {
"start": "exit 1",
"test": "jest",
"lint": "eslint ."
},
"browser": {
"dgram": "./UdpSockets.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tradle/react-native-udp"
},
"keywords": [
"react-component",
"reactnative",
"react-native",
"dgram",
"udp",
"sockets",
"ios",
"android"
],
"author": {
"name": "Mark Vayngrib",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tradle/react-native-udp/issues"
},
"homepage": "https://github.com/tradle/react-native-udp",
"dependencies": {
"base64-js": "1.3.1",
"events": "^3.1.0",
"ip-regex": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.8.0",
"@babel/runtime": "^7.8.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-jest": "^23.4.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"react-native": "^0.61.5"
}
}