-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.56 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
110
111
112
113
114
115
116
117
118
119
120
{
"name": "hiera-editor",
"version": "0.1.7",
"description": "A GUI tool to manage your Puppet/Hiera for you",
"main": "dist/main.js",
"scripts": {
"start": "electron .",
"postinstall": "npx run-script-os && npx electron-builder install-app-deps",
"install:darwin": "GEM_HOME=./ruby/bundler ./node_modules/rubyjs-darwin/bin/gem install bundler && BUNDLE_GEMFILE=./ruby/Gemfile GEM_HOME=./ruby/bundler ./ruby/bundler/bin/bundle install --path=../ruby/gems --binstubs=../ruby/bin",
"install:linux": "GEM_HOME=./ruby/bundler ./node_modules/rubyjs-linux/bin/gem install bundler && BUNDLE_GEMFILE=./ruby/Gemfile GEM_HOME=./ruby/bundler ./ruby/bundler/bin/bundle install --path=../ruby/gems --binstubs=../ruby/bin",
"install:win32": "cmd /C \"node_modules\\rubyjs-win32\\bin\\gem install bundler --install-dir=%CD%\\ruby\\bundler && ruby\\bundler\\bin\\bundle.bat install --gemfile=%CD%\\ruby\\Gemfile --path=..\\ruby\\gems --binstubs=..\\ruby\\bin\"",
"test": "mocha --timeout 15000 dist/tests/**/*.js",
"compile": "tsc",
"dist": "npm run compile && npx electron-builder",
"publish": "npm run compile && npx electron-builder -p onTagOrDraft"
},
"repository": "https://github.com/desertkun/hiera-editor",
"build": {
"appId": "com.desertkun.hiera-editor",
"productName": "Hiera Editor",
"files": [
"./build/**/*",
"./dist/**/*",
"./html/**/*",
"./css/**/*",
"./js/**/*",
"./images/**/*",
"./fonts/**/*",
"./ruby/**/*"
],
"directories": {
"output": "release-builds"
},
"nsis": {
"createDesktopShortcut": true
},
"mac": {
"asar": true,
"asarUnpack": [
"**/app/node_modules/rubyjs-darwin/*",
"./ruby/**/*"
],
"icon": "build/icons/icon.icns",
"target": [
"zip",
"dmg"
]
},
"win": {
"asar": true,
"asarUnpack": [
"**/app/node_modules/rubyjs-win32/*",
"./ruby/**/*"
],
"icon": "build/icons/icon.ico"
},
"linux": {
"asar": true,
"asarUnpack": [
"**/app/node_modules/rubyjs-linux/*",
"./ruby/**/*"
],
"icon": "build/icons/icon.png"
}
},
"keywords": [
"Electron",
"Puppet",
"Hiera"
],
"author": "desertkun",
"license": "MIT",
"devDependencies": {
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.5",
"@types/tmp": "0.0.33",
"@types/chai": "^4.1.6",
"@types/fs-extra": "^5.0.4",
"@types/yaml": "^1.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"electron": "^3.0.0",
"electron-builder": "^20.38.4",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"run-script-os": "^1.0.3",
"tmp": "0.0.33",
"ts-node": "^7.0.1",
"typescript": "^3.1.3"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.3.1",
"@types/request": "^2.48.1",
"app-root-path": "^2.0.1",
"dialogs": "^1.1.20",
"domain-name-parser": "^2.3.0",
"electron-ipc-tunnel": "^3.1.0",
"electron-json-storage": "^4.1.3",
"electron-updater": "^4.0.6",
"electron-window-state": "^4.1.1",
"es6-promise-pool": "^2.5.0",
"extract-zip": "^1.6.7",
"fs-extra": "^7.0.1",
"ini": "^1.3.5",
"install": "^0.10.2",
"jquery": "^3.2.1",
"node-forge": "^0.7.6",
"npm": "^5.10.0",
"request": "^2.88.0",
"slash": "^2.0.0",
"static-eval": ">=2.0.0",
"text-ellipsis": "^1.0.3",
"yaml": "^1.0.1"
},
"optionalDependencies": {
"rubyjs-darwin": "2.3.3",
"rubyjs-win32": "2.3.5",
"rubyjs-linux": "2.3.6"
}
}