-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
143 lines (143 loc) · 4.82 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "jenkins-button",
"version": "0.0.5",
"main": "main.js",
"author": "Marcello Quarta",
"description": "A Jenkins Release Button",
"homepage": "https://github.com/skyquartam/jenkins-button",
"maintainers": [
{
"name": "Marcello Quarta",
"email": "marcello.quarta93@gmail.com",
"url": "https://github.com/skyquartam"
}
],
"scripts": {
"ng": "ng",
"start": "npm run electron:start",
"build": "ng build",
"test": "echo 'No tests are defined'",
"lint": "ng lint",
"e2e": "ng e2e",
"postinstall": "node version.js && electron-builder install-app-deps",
"electron:start": "npm-run-all -p postinstall ng:clean ng:build electron:serve",
"ng:clean": "rimraf dist && rimraf main.js",
"electron:serve": "wait-on ./dist/electron-angular/index.html && npm run electron:watch",
"ng:build": "ng build --base-href='' --watch=true",
"electron:tsc": "tsc -w main.ts --lib es2015,es2016,es2017,esnext,dom",
"electron:run": "wait-on main.js && electron . --serve --remote-debugging-port=9222",
"electron:exit": "taskkill /IM electron.exe /F",
"electron:watch": "concurrently --kill-others \"npm run electron:tsc \" \"npm run electron:run\"",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"release": "node version.js && build",
"dist:docker": "docker run --rm -ti --env-file <(env | grep -iE 'DEBUG|NODE_|ELECTRON_|YARN_|NPM_|CI|CIRCLE|TRAVIS_TAG|TRAVIS|TRAVIS_REPO_|TRAVIS_BUILD_|TRAVIS_BRANCH|TRAVIS_PULL_REQUEST_|APPVEYOR_|CSC_|GH_|GITHUB_|BT_|AWS_|STRIP|BUILD_') --env ELECTRON_CACHE=\"/root/.cache/electron\" --env ELECTRON_BUILDER_CACHE=\"/root/.cache/electron-builder\" -v ${PWD}:/project -v ${PWD##*/}-node-modules:/project/node_modules -v ~/.cache/electron:/root/.cache/electron -v ~/.cache/electron-builder:/root/.cache/electron-builder electronuserland/builder:wine"
},
"build": {
"asar": true,
"productName": "Jenkins Button",
"appId": "com.maqix.jenkinsButton",
"copyright": "Marcello Quarta",
"publish": {
"provider": "github"
},
"files": [
"./main.js",
"dist"
],
"directories": {
"output": "build",
"buildResources": "buildResources"
},
"mac": {
"category": "public.music.jenkinsButton",
"icon": "buildResources/icon.icns"
},
"nsis": {
"createDesktopShortcut": "always",
"createStartMenuShortcut": true,
"installerIcon": "./src/assets/images/icon.ico",
"uninstallerIcon": "./src/assets/images/icon.ico",
"uninstallDisplayName": "Jenkins Button"
},
"win": {
"target": [
"portable"
],
"icon": "buildResources/icon.ico"
},
"linux": {
"category": "Music",
"icon": "./src/assets/images/icon.ico",
"target": [
"deb",
"rpm",
"apk"
],
"maintainer": "Marcello Quarta"
}
},
"repository": "github:skyquartam/jenkins-button",
"private": true,
"dependencies": {
"@angular-devkit/schematics-cli": "^0.12.3",
"@angular/animations": "7.2.1",
"@angular/cdk": "^7.3.2",
"@angular/material": "^7.1.1",
"@ionic/angular": "^4.0.0",
"@ionic/storage": "^2.2.0",
"@types/electron": "^1.6.10",
"about-window": "^1.12.1",
"core-js": "^2.5.4",
"electron-is-dev": "^1.0.1",
"electron-progressbar": "^1.2.0",
"electron-updater": "^4.0.6",
"git-describe": "^4.0.3",
"jenkins-api": "^0.3.1",
"jenkins-api-ts-typings": "^0.8.7",
"moment": "^2.24.0",
"moment-duration-format": "^2.2.2",
"ngx-electron": "^2.1.1",
"play-sound": "^1.1.3",
"rxjs": "^6.0.0",
"tslib": "^1.9.0",
"yargs": "^12.0.5",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.12.2",
"@angular/cli": "7.2.1",
"@angular/common": "7.2.1",
"@angular/compiler": "7.2.1",
"@angular/compiler-cli": "7.2.1",
"@angular/core": "7.2.1",
"@angular/forms": "7.2.1",
"@angular/http": "7.2.1",
"@angular/language-service": "^7.1.3",
"@angular/platform-browser": "7.2.1",
"@angular/platform-browser-dynamic": "7.2.1",
"@angular/router": "7.2.1",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"codelyzer": "~4.2.1",
"concurrently": "^3.6.1",
"electron": "^3.0.8",
"electron-builder": "^20.34.0",
"electron-reload": "^1.2.5",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^3.1.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.0",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"npm-run-all": "^4.1.5",
"protractor": "^5.4.1",
"ts-node": "~5.0.1",
"tslint": "~5.9.1",
"typescript": "^3.1.6",
"wait-on": "^2.1.0",
"@ionic/angular-toolkit": "latest"
}
}