forked from eclipse-paho/paho.mqtt.javascript
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "react-native-paho-mqtt",
"description": "A fork of the Paho javascript client for use in React Native",
"version": "0.1.1",
"scripts": {
"lint": "eslint .",
"flow": "flow",
"jest": "jest",
"test": "eslint . && flow && jest"
},
"homepage": "https://github.com/rh389/react-native-paho-mqtt",
"license": "SEE LICENSE IN epl-v10",
"keywords": [
"mqtt",
"react-native",
"paho",
"client"
],
"repository": "rh389/react-native-paho-mqtt",
"dependencies": {
"events": "^1.1.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-preset-react-native": "^1.9.1",
"eslint": "^3.15.0",
"flow-bin": "^0.52.0",
"jest-cli": "^18.1.0",
"mosca": "^2.2.0",
"node-localstorage": "^1.3.0",
"websocket": "^1.0.24"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"moduleFileExtensions": [
"js",
"json"
],
"testRegex": "/test/.*\\.test\\.js$"
}
}