-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
65 lines (65 loc) · 2.55 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
{
"name": "openfin-workspace-starter",
"version": "20.0.0",
"description": "OpenFin Workspace Starter",
"scripts": {
"build": "node ./scripts/workspaces.mjs build",
"package-how-tos": "node ./scripts/package.js --legacy",
"package": "node ./scripts/package.js",
"package-for-github": "node ./scripts/package.js --location github",
"package-for-aws": "node ./scripts/package.js --location aws",
"start": "echo You must be in a folder for a specific how-to to use npm run start e.g. ./how-to/register-with-home",
"prettier": "node ./scripts/workspaces.mjs prettier",
"prettier-check": "node ./scripts/workspaces.mjs prettier-check",
"eslint": "node ./scripts/workspaces.mjs eslint",
"markdownlint": "node ./scripts/workspaces.mjs markdownlint",
"validate": "node ./scripts/workspaces.mjs validate",
"list-update-packages": "npx --yes npm-check-updates --deep > updatable-packages.txt",
"update-packages": "npx --yes npm-check-updates --upgrade --deep -x chromedriver,chai,fkill*,node-emoji,@openfin/core,@openfin/node-adapter,@openfin/workspace,@openfin/workspace-platform,eslint-plugin-import",
"remove-packages": "npx --yes rimraf --glob **/node_modules && npx rimraf --glob **/package-lock.json",
"common-update": "node ./scripts/common-update.mjs"
},
"workspaces": [
"how-to/*",
"how-to/automation-testing/*"
],
"packageExclude": [
"how-to/hints-and-tips",
"how-to/integrate-server-authentication",
"how-to/integrate-with-ms365-basic",
"how-to/integrate-with-ms365-low-code",
"how-to/integrate-with-ms365-low-code-basic",
"how-to/integrate-with-openid-connect",
"how-to/integrate-with-rss",
"how-to/integrate-with-salesforce-basic",
"how-to/integrate-with-snap-basic",
"how-to/migrate-from-a-previous-version",
"how-to/automation-testing",
"how-to/automation-testing/register-with-home-js",
"how-to/automation-testing/register-with-home-ts",
"how-to/automation-testing/register-with-store-js",
"how-to/automation-testing/selenium",
"how-to/automation-testing/wdio"
],
"packageCustomFolder": "",
"contributors": [
"adam.saland@here.io",
"ameet.jayawant@here.io",
"john.mandia@here.io",
"richard.browne@here.io",
"joe.ransegnola@here.io"
],
"license": "SEE LICENSE IN LICENSE.MD",
"devDependencies": {
"@openfin/node-adapter": "40.100.7",
"fast-glob": "3.3.2",
"fs-extra": "11.2.0",
"replace-in-file": "7.1.0",
"yargs": "17.7.2"
},
"overrides": {
"parse-bmfont-xml": {
"xml2js": "0.5.0"
}
}
}