electron-node-red/package.json

53 wiersze
1.6 KiB
JSON
Czysty Zwykły widok Historia

2016-03-09 21:49:41 +00:00
{
2016-03-09 22:09:46 +00:00
"name": "electron-node-red",
2016-05-06 12:18:15 +00:00
"version": "1.0.5",
2016-03-09 22:09:46 +00:00
"description": "Electron Node-RED template",
2016-03-09 21:49:41 +00:00
"main": "main.js",
"scripts": {
2016-05-06 12:36:02 +00:00
"start": "electron main.js",
"test": "echo \" Warning: no test specified \"",
"clean": "rm -rf ./dist ",
2016-05-06 16:07:03 +00:00
"pack": "npm run pack:osx",
"pack:osx": "npm run clean && electron-packager . Node-RED --icon=nodered.icns --platform=darwin --arch=x64 --out=dist",
"pack:win": "npm run clean && electron-packager . Node-RED --icon=nodered.icns --platform=win32 --arch=x64 --out=dist",
"build": "npm run build:osx",
"build:osx": "npm run pack:osx && appdmg appdmg.json dist/Node-RED.dmg",
"build:mac": "npm run pack:osx && electron-builder \"dist/Node-RED-darwin-x64\" --platform=osx --out=dist --config=builder.json",
"build:win": "npm run pack:win && electron-builder \"dist/Node-RED-win32-x64\" --platform=win --out=dist --config=builder.json"
2016-05-06 12:36:02 +00:00
},
2016-03-09 21:49:41 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/natcl/electron-node-red.git"
2016-03-09 21:49:41 +00:00
},
"dependencies": {
"node-red": "~0.13.4",
2016-05-06 12:18:15 +00:00
"node-red-dashboard": "git+https://github.com/node-red/node-red-dashboard.git",
"express": "^4.13.0"
2016-03-09 21:49:41 +00:00
},
"keywords": [
2016-05-06 12:18:15 +00:00
"electron",
2016-03-09 21:49:41 +00:00
"quick",
"start",
2016-04-20 13:00:37 +00:00
"node-red"
2016-03-09 21:49:41 +00:00
],
2016-05-06 12:36:02 +00:00
"contributors": [
{"name":"Nathanaël Lécaudé"},
{"name":"Dave Conway-Jones"}
],
2016-03-09 21:49:41 +00:00
"license": "CC0-1.0",
"bugs": {
2016-05-06 12:36:02 +00:00
"url": "https://github.com/dceejay/electron-node-red/issues"
2016-03-09 21:49:41 +00:00
},
2016-05-06 12:36:02 +00:00
"homepage": "https://github.com/dceejay/electron-node-red#readme",
2016-03-09 21:49:41 +00:00
"devDependencies": {
2016-05-06 12:36:02 +00:00
"electron-prebuilt": "^0.37.8",
2016-05-06 14:17:49 +00:00
"electron-builder": "*",
2016-05-06 12:36:02 +00:00
"appdmg": "*",
2016-05-06 14:17:49 +00:00
"electron-packager": "*"
2016-03-09 21:49:41 +00:00
}
}