97 lines
2.5 KiB
JSON
97 lines
2.5 KiB
JSON
{
|
|
"name": "MQTT-Explorer",
|
|
"version": "0.1.3",
|
|
"description": "Explore your message queues",
|
|
"main": "dist/src/electron.js",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"test": "npm run test-backend",
|
|
"build": "tsc && cd app && npm run build && cd ..",
|
|
"test-backend": "cd backend && npm run test && cd ..",
|
|
"prepare-release": "./prepare-release.sh",
|
|
"package": "ts-node package.ts",
|
|
"package-with-docker": "./package-with-docker.sh"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/thomasnordquist/MQTT-Explorer.git"
|
|
},
|
|
"build": {
|
|
"appId": "mqtt-explorer",
|
|
"nodeGypRebuild": false,
|
|
"mac": {
|
|
"category": "de.t7n.apps.mqtt-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": {
|
|
"@types/chai": "^4.1.7",
|
|
"@types/mocha": "^5.2.5",
|
|
"@types/mustache": "^0.8.32",
|
|
"@types/node": "^10.12.18",
|
|
"@types/semver": "^5.5.0",
|
|
"@types/sha1": "^1.1.1",
|
|
"@types/socket.io": "^2.1.2",
|
|
"axios": "^0.18.0",
|
|
"chai": "^4.2.0",
|
|
"electron": "^4.0.2",
|
|
"electron-builder": "^20.38.4",
|
|
"mocha": "^5.2.0",
|
|
"mustache": "^3.0.1",
|
|
"nyc": "^13.1.0",
|
|
"redux-thunk": "^2.3.0",
|
|
"source-map-support": "^0.5.9",
|
|
"ts-node": "^7.0.1",
|
|
"tslint": "^5.12.0",
|
|
"tslint-config-airbnb": "^5.11.1",
|
|
"tslint-react": "^3.6.0",
|
|
"tslint-strict-null-checks": "^1.0.1",
|
|
"typescript": "^3.2.2"
|
|
},
|
|
"dependencies": {
|
|
"electron-debug": "^2.0.0",
|
|
"electron-is-dev": "^1.0.1",
|
|
"electron-log": "^2.2.17",
|
|
"electron-telemetry": "git+https://github.com/thomasnordquist/electron-telemetry.git#dist",
|
|
"electron-updater": "^4.0.6",
|
|
"mqtt": "^2.18.8",
|
|
"sha1": "^1.1.1"
|
|
},
|
|
"resolutions": {
|
|
"debug": "4.1.1",
|
|
"ms": "2.0.0",
|
|
"fs-extra": "7.0.1",
|
|
"minimist": "1.2.0",
|
|
"path-exists": "3.0.0",
|
|
"through2": "2.0.5",
|
|
"readable-stream": "2.3.6",
|
|
"xtend": "4.0.1",
|
|
"isarray": "0.0.1",
|
|
"string_decoder": "1.1.1",
|
|
"punycode": "2.1.1",
|
|
"extsprintf": "1.3.0",
|
|
"chalk": "2.4.2",
|
|
"tslib": "1.9.0",
|
|
"tsutils": "3.7.0",
|
|
"esutils": "2.0.2",
|
|
"ansi-styles": "3.2.1",
|
|
"supports-color": "5.5.0",
|
|
"pump": "3.0.0"
|
|
}
|
|
}
|