forked from yaqwsx/nativescript-simple-networking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "nativescript-simple-networking",
"version": "0.1.0",
"description": "UDP and TCP sockets for NativeScript",
"keywords": [
"UDP",
"TCP",
"socket",
"network",
"nativescript",
"javascript"
],
"repository": {
"type": "git",
"url": "https://github.com/yaqwsx/nativescript-simple-networking.git"
},
"author": {
"name": "Jan Mrázek",
"email": "[email protected]",
"url": "https://honzamrazek.cz"
},
"bugs": {
"url": "https://github.com/yaqwsx/nativescript-simple-networking/issues"
},
"license": {
"type": "MIT",
"url": "https://github.com/yaqwsx/nativescript-simple-networking/blob/master/LICENSE"
},
"homepage": "https://github.com/yaqwsx/nativescript-simple-networking",
"readmeFilename": "README.md",
"main": "index",
"typyings": "index.d.ts",
"scripts": {
"prepublish": "tsc"
},
"nativescript": {
"platforms": {
"android": "2.4.0"
}
},
"devDependencies": {
"typescript": "^2.2.1"
},
"dependencies": {
"ip-address": "^5.8.6",
"tns-platform-declarations": "^2.5.0",
"util": "^0.10.3"
}
}