-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
50 lines (50 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
{
"name": "web-mqtt-client",
"version": "1.3.1",
"description": "A better MQTT API for the browser",
"main": "mqtt-client.js",
"files": [
"mqtt-client.js",
"mqtt-client.min.js"
],
"scripts": {
"test": "electron-mocha --renderer --R spec --preload paho/mqttws31.js --preload mqtt-client.js ./test/",
"develop": "onchange 'mqtt-client.js' 'test/*' -- npm t",
"minify": "uglifyjs mqtt-client.js -o mqtt-client.min.js -c --m --screw-ie8",
"lint": "eslint --fix -c config/eslint.conf mqtt-client.js; exit 0",
"precoverage:test": "mkdir -p coverage && istanbul instrument mqtt-client.js -o coverage/mqtt-client.instrumented.js",
"coverage:test": "istanbul cover electron-mocha -- --renderer --R spec --preload paho/mqttws31.js --preload coverage/mqtt-client.instrumented.js ./test/ ./test/coverage/coverageReport.js",
"coverage:details": "istanbul report lcov && opn coverage/lcov-report/index.html",
"ghp-deploy": "git subtree push --prefix demo origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orbitbot/web-mqtt-client.git"
},
"keywords": [
"mqtt",
"mqtt-client",
"paho"
],
"author": "Patrik Johnson <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/orbitbot/web-mqtt-client/issues"
},
"homepage": "https://github.com/orbitbot/web-mqtt-client#readme",
"devDependencies": {
"chai": "3.5.0",
"electron-mocha": "2.1.0",
"eslint": "2.10.2",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-react": "5.1.1",
"istanbul": "0.4.3",
"istanbul-text-full-reporter": "0.1.2",
"mosca": "1.3.0",
"onchange": "2.4.0",
"opn-cli": "3.1.0",
"sinon": "1.17.4",
"uglify-js": "2.6.2"
},
"dependencies": {}
}