Advertisement
CursiveD

package.json

Jan 6th, 2017
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.06 KB | None | 0 0
  1. {
  2.   "name": "cursivedsoft",
  3.   "version": "0.0.0",
  4.   "productName": "CursiveD_Test_Tron",
  5.   "main": "main.js",
  6.   "dependencies": {
  7.     "electron": "1.4.7"
  8.   },
  9.   "description": "Cursive D Electron App",
  10.   "devDependencies": {
  11.     "electron": "1.4.7",
  12.     "electron-builder": "^5.12.1"
  13.   },
  14.   "scripts": {
  15.     "start": "electron ./resources/app/",
  16.     "pack": "build --dir",
  17.     "dist": "build"
  18.   },
  19.   "author": "Darren M. OConnell",
  20.   "build": {
  21.     "appId": "com.cursived.electronapp",
  22.     "iconUrl": "http://cursived.com/icon.ico",
  23.     "app-category-type": "public.app-category.programming",
  24.     "win": {
  25.       "target": "nsis",
  26.       "msi": "true",
  27.       "icon": "build/icon.ico"
  28.     },
  29.     "linux": {
  30.       "target": "deb",
  31.       "category": "Development",
  32.       "executableName": "cursivedsoft"
  33.     }
  34.   },
  35.   "directories": {
  36.     "app": "./resources/app",
  37.     "buildResources": "build",
  38.     "output": "dist"
  39.   },
  40.   "publish": {
  41.     "provider": "generic",
  42.     "owner": "Darren M. OConnell",
  43.     "url": "https://cursived.com/electron/"
  44.   }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement