-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.59 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
{
"name": "web-mqtt-client",
"version": "1.0.0",
"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 --scripts paho/mqttws31.js,mqtt-client.js ./test/",
"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 --scripts paho/mqttws31.js,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": "orbitbot/electron-mocha",
"eslint": "^2.3.0",
"eslint-config-airbnb": "^6.1.0",
"istanbul": "^0.4.2",
"istanbul-text-full-reporter": "^0.1.2",
"opn-cli": "^3.1.0",
"sinon": "^1.17.3",
"uglify-js": "^2.6.1"
}
}