-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
109 lines (109 loc) · 3.26 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "arkos-assistant",
"productName": "arkOS Assistant",
"version": "1.0.0",
"description": "Installer and client utility app for arkOS",
"private": true,
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"build": "ember build",
"start": "ember server",
"test": "ember test",
"package:mac": "ember electron:package --platform darwin --arch x64",
"package:win": "ember electron:package --platform win32 --arch x64",
"package:linux": "ember electron:package --platform linux --arch x64",
"bundle:mac": "appdmg appdmg.json electron-builds/\"arkOS Assistant.dmg\"",
"bundle:win": "node winstaller.js",
"bundle:linux": "",
"bundle:deb": ""
},
"repository": "",
"engines": {
"node": ">= 0.10.0"
},
"author": "",
"license": "MIT",
"devDependencies": {
"broccoli-asset-rev": "^2.2.0",
"broccoli-funnel": "^1.0.1",
"electron-packager": "7.0.0",
"electron-prebuilt": "0.37.6",
"electron-rebuild": "1.1.3",
"electron-winstaller": "^2.2.0",
"ember-cli": "1.13.13",
"ember-cli-app-version": "^1.0.0",
"ember-cli-babel": "^5.1.5",
"ember-cli-content-security-policy": "0.4.0",
"ember-cli-dependency-checker": "^1.1.0",
"ember-cli-htmlbars": "^1.0.1",
"ember-cli-htmlbars-inline-precompile": "^0.3.1",
"ember-cli-ic-ajax": "0.2.4",
"ember-cli-inject-live-reload": "^1.3.1",
"ember-cli-qunit": "^1.0.4",
"ember-cli-release": "0.2.8",
"ember-cli-sri": "^1.2.0",
"ember-cli-uglify": "^1.2.0",
"ember-data": "1.13.15",
"ember-disable-proxy-controllers": "^1.0.1",
"ember-electron": "1.4.0",
"ember-export-application-global": "^1.0.4",
"ember-inspector": "1.9.5"
},
"dependencies": {
"bonjour": "^3.2.2",
"drivelist": "git+https://github.com/peakwinter/drivelist.git",
"electron-squirrel-startup": "^0.1.4",
"electron-sudo": "git+https://github.com/peakwinter/electron-sudo.git",
"path": "^0.12.7",
"request": "^2.70.0",
"request-progress": "^2.0.1",
"resin-image-write": "^3.0.4",
"yauzl": "^2.4.1"
},
"main": "electron.js",
"ember-electron": {
"WHAT IS THIS?": "Please see the README.md",
"copy-files": [
"electron.js",
"package.json",
"includes/*"
],
"name": "arkOS Assistant",
"platform": "all",
"arch": "all",
"version": "0.37.6",
"app-bundle-id": "io.citizenweb.arkOS-Assistant",
"app-category-type": "public.app-category.utilities",
"app-copyright": "(c) 2016 CitizenWeb",
"app-version": "1.0.0",
"asar": null,
"asar-unpack": null,
"asar-unpack-dir": null,
"build-version": null,
"cache": null,
"extend-info": null,
"extra-resource": null,
"helper-bundle-id": null,
"icon": "build-includes/icon",
"ignore": null,
"out": null,
"osx-sign": {
"identity": "Developer ID Application: Jacob Cook (Y5PY2JRJ32)",
"entitlements": null,
"entitlements-inherit": null
},
"overwrite": true,
"prune": null,
"strict-ssl": true,
"version-string": {
"CompanyName": "CitizenWeb",
"FileDescription": "Installer and client utility app for arkOS",
"OriginalFilename": "",
"ProductName": "arkOS Assistant",
"InternalName": "arkos-assistant"
}
}
}