Files
mqtt-explorer/package.json
Thomas Nordquist 2b7e9a5ef7 Enforce codestyle
2019-01-02 16:37:36 +01:00

44 lines
1.0 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",
"test-backend": "cd backend && npm run test && cd ..",
"release": "npm run test && ./release.sh"
},
"build": {
"appId": "mq-explorer",
"mac": {
"category": "de.t7n.apps.mq-explorer"
},
"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"
},
"dependencies": {
"mqtt-explorer-backend": "file:backend"
}
}