This repository has been archived by the owner on Oct 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
59 lines (59 loc) · 2.04 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
{
"name": "nativescript-socket.io",
"version": "0.11.1",
"description": "Full-featured Socket.IO client implementation for NativeScript",
"main": "socketio",
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"ios": "2.0.0",
"android": "2.0.0"
}
},
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "rm -fr ./nativescript-socket.io-*.tgz ; npm pack ; cd ./demo ; rm -fr ./dev ; tar -xvzf ../nativescript-socket.io-*.tgz ; mv ./package ./dev ; exit",
"android-native-type-definition": "cd demo ; tns build android ; java -jar platforms/android/build-tools/dts-generator.jar -input $(find ./ -name 'socket.io-client-*.jar') -input $(find ./ -name 'engine.io-client-*.jar') -input $(find ./ -name 'okhttp-*.jar') -input $(find ./ -name 'okio-*.jar') ; cp -f ./out/android.d.ts ../typings/android.d.ts ; rm -fr ./out ; cd ..",
"ios-native-type-definition": "cd demo ; TNS_TYPESCRIPT_DECLARATIONS_PATH=$(pwd)/typings tns build ios ; cp -f './typings-x86_64/objc!SocketIO.d.ts' ../typings/ios.d.ts ; rm -fr ./typings* ; cd .."
},
"repository": {
"type": "git",
"url": "git+https://github.com/naderio/nativescript-socket.io.git"
},
"keywords": [
"NativeScript",
"ecosystem:nativeScript",
"JavaScript",
"TypeScript",
"Android",
"iOS",
"WebSocket",
"Socket.IO",
"SocketIO",
"Socket"
],
"author": "Nader Toukabri <[email protected]>",
"license": "Unlicense",
"contributors": [
{
"name": "Ludovic Fabrèges",
"url": "https://github.com/lfabreges"
}
],
"bugs": {
"url": "https://github.com/naderio/nativescript-socket.io/issues"
},
"homepage": "https://github.com/naderio/nativescript-socket.io#readme",
"devDependencies": {
"chai": "4.1.2",
"karma": "1.7.1",
"karma-chai": "0.1.0",
"karma-mocha": "1.3.0",
"karma-nativescript-launcher": "0.4.0",
"mocha": "4.0.1",
"tns-core-modules": "3.2.0",
"tns-platform-declarations": "3.2.0",
"typescript": "^3.5.3"
}
}