-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.02 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
{
"name": "log-gage",
"productName": "Log-Gage",
"version": "1.0.3",
"description": "An standalone, open-source tooling application for AWS Cloud-Watch logs.",
"main": "main.js",
"scripts": {
"start": "concurrently \"BROWSER=none npm start --prefix ./client\" \"wait-on http://localhost:3000 && electron .\"",
"resume": "electron .",
"test": "./node_modules/jshint/bin/jshint main.js",
"check": "npm-check",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps",
"release": "build",
"build": "build --publish never",
"prebuild": "npm run build --prefix ./client",
"build_main": "build --publish never"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mim-Armand/Log-Gage.git"
},
"keywords": [
"AWS",
"CloudWatch",
"Logging",
"Log",
"Cloud-Watch",
"tooling",
"electron",
"react",
"redux"
],
"license": "CC",
"author": "mim",
"bugs": {
"url": "https://github.com/mim-Armand/Log-Gage/issues"
},
"homepage": "https://www.linkedin.com/in/3dots/",
"devDependencies": {
"devtron": "^1.4.0",
"electron": "^1.8.2",
"electron-builder": "^20.2.0",
"jshint": "^2.9.5",
"npm-check": "^5.5.2"
},
"build": {
"appId": "eu.armand.loggage",
"copyright": "Copyright © 2018 mim_Armand",
"productName": "LogGage!",
"files": [
"./client/build/**/*",
"main.js",
"auto-update.js",
"version.html"
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "build/icon.icns",
"publish": [
"github"
]
}
},
"dependencies": {
"aws-sdk": "^2.203.0",
"concurrently": "^3.5.1",
"electron-in-page-search": "^1.2.4",
"electron-is-dev": "^0.3.0",
"electron-log": "^2.2.14",
"electron-store": "^1.3.0",
"electron-updater": "^2.20.1",
"figlet": "^1.2.0",
"get-aws-profiles": "^1.0.5",
"lolcatjs": "^2.3.1",
"wait-on": "^2.1.0"
}
}