forked from triniwiz/nativescript-socketio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.74 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
63
64
65
66
67
68
69
70
{
"name": "nativescript-socketio",
"version": "2.3.1",
"description": "Socket.IO for nativescript",
"main": "socketio",
"nativescript": {
"platforms": {
"android": "1.6.0",
"ios": "1.6.0"
}
},
"scripts": {
"build": "tsc",
"demo.ios": "npm run preparedemo; cd demo; tns run ios",
"demo.android": "npm run preparedemo; cd demo; tns run android",
"preparedemo": "npm run build ; cd demo ; tns plugin remove nativescript-socketio ; tns plugin add .. ; tns install",
"setup": "cd demo; npm install; cd ..; cd demo; tns plugin add ..; cd ..",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/triniwiz/nativescript-socketio.git"
},
"keywords": [
"nativescript",
"ecosystem:nativescript",
"nativescript-android",
"nativescript-ios",
"NativeScript",
"JavaScript",
"Android",
"IOS",
"socket.io",
"socketio",
"io",
"socket",
"events",
"tcp",
"websocket",
"framework",
"realtime"
],
"author": {
"name": "Osei Fortune",
"email": "fortune.osei@yahoo.com",
"url": "https://github.com/triniwiz"
},
"contributors": [
{
"name": "Don Burgess",
"url": "https://github.com/db3dev",
"email": "don@db3dev.com"
},{
"name": "Robert Laverty",
"url": "https://github.com/roblav96",
"email": "roblav96@gmail.com"
}
],
"bugs": {
"url": "https://github.com/triniwiz/nativescript-socketio/issues"
},
"license": "MIT",
"homepage": "https://github.com/triniwiz/nativescript-socketio",
"readmeFilename": "README.md",
"devDependencies": {
"tns-core-modules": "^2.2.0",
"tns-platform-declarations": "^2.2.0",
"typescript": "^1.8.7"
}
}