OpenBuilds-CONTROL/package.json

81 wiersze
1.9 KiB
JSON
Czysty Zwykły widok Historia

2018-06-19 08:07:03 +00:00
{
2018-06-19 20:25:40 +00:00
"name": "OpenBuildsMachineDriver",
2018-07-16 11:16:49 +00:00
"version": "1.0.23",
2018-06-19 08:07:03 +00:00
"license": "AGPL-3.0",
"description": "Machine Interface Driver for OpenBuilds",
"author": "github.com/openbuilds",
"devDependencies": {
"copyfiles": "^1.2.0",
"electron": "^1.6.x",
2018-07-16 17:24:09 +00:00
"electron-builder": "^20.22.0",
2018-06-19 08:07:03 +00:00
"ncp": "^2.0.0"
},
"dependencies": {
2018-07-03 20:28:02 +00:00
"directory-tree": "^2.1.0",
2018-07-11 12:39:24 +00:00
"electron-updater": "^2.23.3",
2018-06-19 08:07:03 +00:00
"express": "^4.16.2",
2018-06-27 14:08:24 +00:00
"formidable": "^1.2.1",
2018-06-19 08:07:03 +00:00
"ip": "^1.1.5",
2018-06-19 20:25:40 +00:00
"lodash": "^4.17.10",
2018-06-19 08:07:03 +00:00
"md5": "^2.2.1",
2018-06-27 14:08:24 +00:00
"rimraf": "^2.6.2",
2018-06-19 08:07:03 +00:00
"serialport": "^4.0.7",
"socket.io": "^2.0.4"
},
"main": "index.js",
"scripts": {
2018-06-27 19:23:34 +00:00
"start": "echo \"Please run 'npm run dist' to create a local installer\" ",
2018-06-19 08:07:03 +00:00
"test": "echo \"Error: no test specified\" && exit 0",
2018-07-12 14:56:42 +00:00
"dist": "build"
2018-06-19 08:07:03 +00:00
},
"keywords": [
"usb"
],
2018-07-11 12:39:24 +00:00
"repository": "https://github.com/OpenBuilds/SW-Machine-Drivers",
2018-06-19 08:07:03 +00:00
"build": {
"appId": "openbuilds.projectmakr",
2018-07-12 20:35:08 +00:00
"productName": "OpenBuildsMachineDriver",
2018-06-19 08:07:03 +00:00
"asar": true,
2018-06-27 14:08:24 +00:00
"nsis": {
"oneClick": false,
2018-07-11 19:52:11 +00:00
"perMachine": false,
2018-07-12 11:22:00 +00:00
"allowToChangeInstallationDirectory": true,
"allowElevation": true,
2018-06-27 14:08:24 +00:00
"license": "build/licence.txt",
"installerIcon": "build/icon.ico",
2018-07-12 20:35:08 +00:00
"installerSidebar": "build/installerSidebar.bmp",
"artifactName": "${productName}-Setup-${version}.${ext}"
2018-06-27 14:08:24 +00:00
},
2018-06-19 08:07:03 +00:00
"files": [
2018-07-11 19:29:51 +00:00
"**/*",
"ssl/**/*"
2018-06-19 08:07:03 +00:00
],
2018-07-11 12:39:24 +00:00
"extraFiles": [
"ssl"
],
2018-06-22 19:49:51 +00:00
"linux": {
"icon": "build/"
},
2018-06-19 08:07:03 +00:00
"mac": {
"icon": "build/icon.icns",
"category": "public.app-category.graphics-design"
},
"dmg": {
"icon": "build/icon.icns",
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
}
}
}