Files
mqtt-explorer/package.json
Thomas Nordquist b44f352804 WiP #broken
2019-01-08 16:39:18 +01:00

66 lines
1.7 KiB
JSON

{
"name": "MQ(TT)-Explorer",
"version": "0.0.1",
"description": "Explore your message queues",
"main": "electron.js",
"scripts": {
"start": "electron .",
"test": "npm run test-backend",
"build": "cd app; npm run build; cd ..; cd backend; npm run build; cd ..",
"test-backend": "cd backend && npm run test && cd ..",
"release": "npm run test && ./release.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/thomasnordquist/MQTT-Explorer.git"
},
"build": {
"appId": "mqtt-explorer",
"mac": {
"category": "de.t7n.apps.mq-explorer",
"publish": ["github"]
},
"linux": {
"category": "Development",
"maintainer": "Thomas Nordquist"
},
"directories": {
"app": "./",
"buildResources": "res",
"output": "build"
}
},
"author": "Thomas Nordquist",
"email": "xxnerowingerxx@gmail.com",
"homepage": "https://github.com",
"license": "ISC",
"devDependencies": {
"electron": "^4.0.0",
"electron-builder": "^20.38.4",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-react": "^3.6.0",
"typescript": "^3.2.2",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/sha1": "^1.1.1",
"@types/socket.io": "^2.1.2",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"source-map-support": "^0.5.9",
"tslint-strict-null-checks": "^1.0.1"
},
"dependencies": {
"@types/electron": "^1.6.10",
"@types/socket.io": "^2.1.2",
"electron-log": "^2.2.17",
"electron-updater": "^4.0.6",
"mqtt": "^2.18.8",
"sha1": "^1.1.1",
"socket.io": "^2.2.0"
}
}