-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.76 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
{
"name": "ffmpeg-split",
"version": "1.0.0",
"main": "http://localhost:8964",
"node-remote": "http://localhost:8964",
"node-main": "",
"window": {
"width": 960,
"height": 600,
"min_width": 700,
"min_height": 500,
"icon": "logo.png",
"frame": false,
"toolbar": false
},
"scripts": {
"ng": "ng",
"serve": "ng serve",
"start": "concurrently \"ng serve --port=8964\" \"nw .\"",
"build:clean": "rimraf ./dist-ng ./dist",
"build:ng": "ng build --prod --output-path ./dist-ng",
"build:win64": "npm run build:clean && npm run build:ng && npm run build:nw:win64",
"build:win86": "npm run build:clean && npm run build:ng && npm run build:nw:win86",
"build:mac64": "npm run build:clean && npm run build:ng && npm run build:nw:mac64",
"build:linux64": "npm run build:clean && npm run build:ng && npm run build:nw:linux64",
"build:linux86": "npm run build:clean && npm run build:ng && npm run build:nw:linux86",
"build:all": "npm run build:clean && npm run build:ng && npm run build:nw:all",
"build:nw:win64": "build --concurrent --tasks win-x64 --mirror https://dl.nwjs.io/ .",
"build:nw:win86": "build --concurrent --tasks win-x86 --mirror https://dl.nwjs.io/ .",
"build:nw:linux64": "build --concurrent --tasks linux-x64 --mirror https://dl.nwjs.io/ .",
"build:nw:linux86": "build --concurrent --tasks linux-x86 --mirror https://dl.nwjs.io/ .",
"build:nw:mac64": "build --concurrent --tasks mac-x64 --mirror https://dl.nwjs.io/ .",
"build:nw:all": "build --concurrent --tasks win-x64,win-x86,linux-x86,linux-x64,mac-x64 --mirror https://dl.nwjs.io/ .",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "~8.1.2",
"@angular/common": "~8.1.2",
"@angular/compiler": "~8.1.2",
"@angular/core": "~8.1.2",
"@angular/forms": "~8.1.2",
"@angular/platform-browser": "~8.1.2",
"@angular/platform-browser-dynamic": "~8.1.2",
"@angular/router": "~8.1.2",
"express": "^4.17.1",
"rxjs": "~6.4.0",
"tslib": "^1.9.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.801.2",
"@angular/cli": "~8.1.2",
"@angular/compiler-cli": "~8.1.2",
"@angular/language-service": "~8.1.2",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"codelyzer": "^5.0.0",
"concurrently": "^4.1.1",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"nw": "^0.39.3-sdk",
"nwjs-builder-phoenix": "^1.15.0",
"nwjs-types": "^1.0.0",
"protractor": "~5.4.0",
"rimraf": "^2.6.3",
"ts-node": "~7.0.0",
"tslint": "~5.15.0",
"typescript": "~3.4.3"
},
"build": {
"nwVersion": "v0.39.3",
"nwFlavor": "normal",
"targets": [
"zip",
"nsis7z"
],
"files": [
"**/*"
],
"excludes": [
"e2e/**/*",
"src/**/*",
".editorconfig",
".gitignore",
"angular.json",
"browserslist",
"karma.conf.js",
"package-lock.json",
"screenshot.png",
"tsconfig.app.json",
"tsconfig.json",
"tsconfig.spec.json",
"tslint.json"
],
"strippedProperties": [
"chromium-args",
"scripts",
"devDependencies",
"build"
],
"overriddenProperties": {
"main": "http://localhost:8965",
"node-remote": "http://localhost:8965",
"node-main": "server.js"
},
"nsis": {
"languages": [
"English"
],
"diffUpdaters": false,
"hashCalculation": true
}
}
}