-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 1.75 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@realmq/web-sdk",
"version": "0.2.0",
"description": "The RealMQ web sdk for building realtime browser apps. This sdk provides developer friendly access to REST & Realtime APIs of realmq.com.",
"license": "MIT",
"author": "RealMQ GmbH <[email protected]> (https://realmq.com)",
"contributors": [
"Alrik Zachert <[email protected]>"
],
"repository": "https://github.com/realmq/realmq-web-sdk",
"keywords": [
"realtime",
"realmq",
"api",
"sdk",
"mqtt",
"broker"
],
"scripts": {
"build": "gulp build",
"precommit": "lint-staged",
"lint": "xo",
"lint-fix": "xo --fix",
"test": "echo 'No tests, yet' && exit 1"
},
"files": [
"dist",
"lib"
],
"main": "index.js",
"devDependencies": {
"browserify": "^16.2.0",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-replace": "1.0.0",
"gulp-uglify": "^3.0.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"xo": "^0.20.3"
},
"lint-staged": {
"*.js": [
"yarn lint-fix",
"git add"
]
},
"xo": {
"space": true,
"prettier": true,
"ignores": [
"**/vendor/**"
],
"overrides": [
{
"files": "**/lib/**/*.js",
"envs": [
"browser"
],
"parserOptions": {
"ecmaVersion": 5,
"sourceType": "script",
"ecmaFeatures": {
"globalReturn": false
}
},
"esnext": false,
"rules": {
"no-implicit-globals": "off"
}
}
]
},
"dependencies": {
"base64-js": "^1.5.1",
"paho-mqtt": "^1.1.0",
"promise": "^8.0.1"
},
"publishConfig": {
"access": "public"
}
}