forked from FrozenPyrozen/rn-native-mqtt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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": "react-native-native-mqtt",
"title": "React Native Native Mqtt",
"version": "0.1.9",
"description": "An MQTT client or React Native that actually works with a simple Javascript interface",
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"homepage": "https://github.com/FrozenPyrozen/rn-native-mqtt",
"repository": {
"type": "git",
"url": "https://github.com/FrozenPyrozen/rn-native-mqtt"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"clean": "rimraf lib",
"tsc": "tsc -p .",
"build": "npm run clean && npm run tsc --",
"release": "standard-version"
},
"keywords": [
"react-native",
"mqtt",
"typescript"
],
"author": {
"name": "David Corona, Kirill Kohan",
"username": "davesters, FrozenPyrozen"
},
"license": "MIT",
"licenseFilename": "LICENSE.md",
"readmeFilename": "README.md",
"dependencies": {
"buffer": "^5.4.0",
"random-id": "^1.0.3",
"tiny-emitter": "^2.1.0",
"base-64": "^0.1.0",
"convert-string": "^0.1.0"
},
"peerDependencies": {},
"devDependencies": {
"@types/react-native": "^0.60.7",
"react-native": "^0.63.4",
"rimraf": "^3.0.0",
"standard-version": "^7.0.0",
"tslint": "^5.19.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.5.3"
}
}