This repository has been archived by the owner on Jul 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
187 lines (187 loc) · 5.58 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
{
"name": "@mixer/cdk",
"version": "1.0.2",
"description": "Command line tool for developing with Mixer Interactive",
"main": "./dist/src/electron.js",
"bin": {
"miix": "./bin/miix"
},
"scripts": {
"test": "npm-run-all --parallel --silent test:lint test:unit fmt",
"test:ci": "npm-run-all --parallel --silent test:lint test:cover",
"test:cover": "nyc mocha",
"test:unit": "mocha",
"test:lint": "tslint --project tsconfig.json '{src,test}/**/*.ts'",
"fmt": "npm-run-all --parallel --silent fmt:ts fmt:js && npm run test:lint -- --fix",
"fmt:js": "prettier --single-quote --trailing-comma es5 --write --print-width 100 \"src/**/*.js\" \"bin/miix\"",
"fmt:ts": "prettier --write \"{src,test,types}/**/*.{scss,js,ts}\"",
"build:cli": "rimraf dist && tsc",
"build:editor:pack": "npm run -s build:editor:base && electron-builder --dir",
"build:editor:dist:win": "npm run -s build:editor:base && electron-builder --win --x64",
"build:editor:dist:mac": "npm run -s build:editor:base && electron-builder --mac --x64",
"build:editor:dist": "npm run -s build:editor:base && electron-builder --win --mac --x64",
"build:editor:base": "rimraf dist app && marked changelog.md -o src/app/editor/about/changelog/changelog.component.html && ts-node src/app/tools/setProfile.ts && tsc && ng build -prod",
"build:update-checksum": "node build/update-checksum.js",
"build:update-channel": "node build/update-channel.js",
"start": "ts-node src/app/tools/setProfile.ts && tsc && npm-run-all -p start:ng start:electron",
"start:ng": "ng serve",
"start:electron": "wait-on http-get://localhost:4200/ && electron dist/src/electron --serve --debug",
"prepare": "npm run -s build:cli"
},
"build": {
"appId": "com.mixer.dev.cdk",
"productName": "Control Development Kit",
"artifactName": "CDK-${version}.${ext}",
"copyright": "Copyright Microsoft",
"directories": {
"output": "app",
"buildResources": "."
},
"win": {
"target": "nsis"
},
"nsis": {
"include": "./build/installer.nsh"
},
"files": [
"./dist"
],
"mac": {
"category": "public.app-category.developer-tools"
},
"publish": [
{
"provider": "generic",
"url": "https://cdkreleases.blob.core.windows.net/cdk-ga/"
}
]
},
"nyc": {
"include": [
"src/**/*.ts",
"!src/webpack/editor/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"cobertura",
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"printWidth": 100
},
"repository": {
"type": "git",
"url": "git+https://github.com/mixer/miix-cli.git"
},
"keywords": [
"mixer",
"interactive",
"cli"
],
"author": "Microsoft Corporation",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixer/miix-cli/issues"
},
"homepage": "https://github.com/mixer/miix-cli#readme",
"devDependencies": {
"@angular/animations": "^5.2.8",
"@angular/cdk": "^5.2.4",
"@angular/cli": "^1.7.3",
"@angular/common": "^5.2.8",
"@angular/compiler": "^5.2.8",
"@angular/compiler-cli": "^5.2.8",
"@angular/core": "^5.2.8",
"@angular/forms": "^5.2.8",
"@angular/material": "^5.2.4",
"@angular/platform-browser": "^5.2.8",
"@angular/platform-browser-dynamic": "^5.2.8",
"@mixer/cdk-std": "^0.2.20",
"@ngrx/effects": "^5.2.0",
"@ngrx/entity": "^5.2.0",
"@ngrx/store": "^5.2.0",
"@types/chai": "^4.0.3",
"@types/chai-as-promised": "0.0.31",
"@types/chai-subset": "^1.3.0",
"@types/codemirror": "0.0.44",
"@types/electron": "^1.6.10",
"@types/form-data": "^2.2.0",
"@types/highlight.js": "^9.12.2",
"@types/json5": "0.0.29",
"@types/lodash": "^4.14.74",
"@types/mocha": "^2.2.41",
"@types/moment": "^2.13.0",
"@types/node": "^8.0.50",
"@types/node-fetch": "^1.6.7",
"@types/ora": "^1.3.1",
"@types/sinon": "^2.3.3",
"@types/sinon-chai": "^2.7.28",
"@types/tar": "^4.0.0",
"@types/yargs": "^8.0.2",
"angular2-moment": "^1.8.0",
"bluefill": "^0.1.3",
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.5.0",
"codemirror": "^5.28.0",
"core-js": "^2.5.0",
"devtron": "^1.4.0",
"electron": "^1.7.9",
"electron-builder": "^20.8.1",
"electron-reload": "^1.2.2",
"fast-json-patch": "^2.0.4",
"golden-layout": "^1.5.9",
"highlight.js": "^9.12.0",
"marked": "^0.3.19",
"mocha": "^3.5.0",
"moment": "^2.18.1",
"node-sass": "^4.5.3",
"normalize.css": "^7.0.0",
"npm-run-all": "^4.0.2",
"npx": "^10.0.1",
"nyc": "^11.2.1",
"prettier": "^1.5.3",
"raygun4js": "^2.8.6",
"rimraf": "^2.6.2",
"sinon": "^3.2.0",
"sinon-chai": "^2.12.0",
"source-map-support": "^0.4.18",
"ts-node": "^3.3.0",
"tslint": "^5.6.0",
"tslint-microsoft-contrib": "5.0.1",
"typescript": "~2.6.2",
"wait-on": "^2.1.0",
"xterm": "^3.2.0",
"zone.js": "^0.8.16"
},
"dependencies": {
"@mixer/cdk-webpack-plugin": "^0.1.4",
"chalk": "^2.3.0",
"command-exists": "^1.2.2",
"electron-updater": "^2.21.4",
"fix-path": "^2.1.0",
"form-data": "^2.3.1",
"json5": "^0.5.1",
"lodash": "^4.17.4",
"node-fetch": "^1.7.2",
"ora": "^1.3.0",
"parse5": "^3.0.2",
"portfinder": "^1.0.13",
"raygun": "^0.9.1",
"rxjs": "5.5.8",
"tar": "^4.0.1",
"tree-kill": "^1.2.0",
"yargs": "^8.0.2"
}
}