balena-cloud-apps 1.0.34 → 1.0.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.circleci/config.yml
CHANGED
|
@@ -1,40 +1,81 @@
|
|
|
1
|
+
|
|
2
|
+
# Javascript Node CircleCI 2.0 configuration file
|
|
3
|
+
#
|
|
4
|
+
# Check {{ '/language-javascript' | docs_url }} for more details
|
|
5
|
+
#
|
|
1
6
|
version: 2.1
|
|
2
7
|
orbs:
|
|
3
8
|
shellcheck: circleci/shellcheck@1.3.16
|
|
4
9
|
|
|
10
|
+
defaults: &defaults
|
|
11
|
+
working_directory: ~/repo
|
|
12
|
+
docker:
|
|
13
|
+
- image: cimg/node:lts-browsers
|
|
14
|
+
auth:
|
|
15
|
+
username: $DOCKER_USER
|
|
16
|
+
password: $DOCKER_PASS
|
|
17
|
+
|
|
5
18
|
jobs:
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
19
|
+
test:
|
|
20
|
+
<<: *defaults
|
|
21
|
+
steps:
|
|
22
|
+
- checkout
|
|
23
|
+
- setup_remote_docker
|
|
24
|
+
- restore_cache:
|
|
25
|
+
keys:
|
|
26
|
+
- v1-dependencies-{{ checksum "package.json" }}
|
|
27
|
+
# fallback to using the latest cache if no exact match is found
|
|
28
|
+
- v1-dependencies-
|
|
29
|
+
- run: npm install
|
|
30
|
+
- run:
|
|
31
|
+
name: Run tests
|
|
32
|
+
command: |
|
|
33
|
+
if [[ $EUID == 0 ]]; then export SUDO=""; else # Check if we are root
|
|
34
|
+
export SUDO="sudo";
|
|
35
|
+
fi
|
|
36
|
+
set -e
|
|
37
|
+
$SUDO cp vendor/cni/init_functions.sh /usr/local/bin/init_functions
|
|
38
|
+
$SUDO chmod +x /usr/local/bin/init_functions
|
|
39
|
+
npm test
|
|
40
|
+
|
|
41
|
+
- save_cache:
|
|
42
|
+
paths:
|
|
43
|
+
- node_modules
|
|
44
|
+
key: v1-dependencies-{{ checksum "package.json" }}
|
|
45
|
+
|
|
46
|
+
- persist_to_workspace:
|
|
47
|
+
root: ~/repo
|
|
48
|
+
paths: .
|
|
49
|
+
deploy:
|
|
50
|
+
<<: *defaults
|
|
12
51
|
steps:
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
set -u
|
|
23
|
-
cp vendor/cni/init_functions.sh /usr/local/bin/init_functions
|
|
24
|
-
chmod +x /usr/local/bin/init_functions
|
|
25
|
-
cd test || true
|
|
26
|
-
./build-test.sh
|
|
27
|
-
- store_test_results:
|
|
28
|
-
path: ~/phpunit
|
|
29
|
-
- store_artifacts:
|
|
30
|
-
path: ~/phpunit
|
|
52
|
+
- attach_workspace:
|
|
53
|
+
at: ~/repo
|
|
54
|
+
- run:
|
|
55
|
+
name: Authenticate with registry
|
|
56
|
+
command: echo "//registry.npmjs.org/:_authToken=$npm_TOKEN" > ~/repo/.npmrc
|
|
57
|
+
- run:
|
|
58
|
+
name: Publish package
|
|
59
|
+
command: npm publish
|
|
60
|
+
|
|
31
61
|
workflows:
|
|
32
62
|
cleanup:
|
|
33
63
|
jobs:
|
|
34
64
|
- shellcheck/check:
|
|
35
65
|
ignore: 'SC1091'
|
|
36
|
-
|
|
66
|
+
test-deploy:
|
|
37
67
|
jobs:
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
68
|
+
- shellcheck/check:
|
|
69
|
+
ignore: 'SC1091'
|
|
70
|
+
- test:
|
|
71
|
+
filters:
|
|
72
|
+
tags:
|
|
73
|
+
only: /^v.*/
|
|
74
|
+
- deploy:
|
|
75
|
+
requires:
|
|
76
|
+
- test
|
|
77
|
+
filters:
|
|
78
|
+
tags:
|
|
79
|
+
only: /^v.*/
|
|
80
|
+
branches:
|
|
81
|
+
ignore: /.*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "balena-cloud-apps",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.35",
|
|
4
4
|
"description": "Shell scripts package to the containers native interface BalenaOS for the Raspberry Pi.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"directories": {
|
|
@@ -30,11 +30,13 @@
|
|
|
30
30
|
"type": "git",
|
|
31
31
|
"url": "git+ssh://git@github.com/b23prodtm/balena-cloud.git"
|
|
32
32
|
},
|
|
33
|
+
"optionalDependencies": {},
|
|
33
34
|
"dependencies": {
|
|
34
35
|
"shelljs": "^0.8.4"
|
|
35
36
|
},
|
|
36
37
|
"bugs": {
|
|
37
38
|
"url": "https://github.com/b23prodtm/balena-cloud/issues"
|
|
38
39
|
},
|
|
39
|
-
"homepage": "https://github.com/b23prodtm/balena-cloud#readme"
|
|
40
|
+
"homepage": "https://github.com/b23prodtm/balena-cloud#readme",
|
|
41
|
+
"devDependencies": {}
|
|
40
42
|
}
|
|
File without changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env bash
|
|
2
|
-
set
|
|
2
|
+
set +u
|
|
3
3
|
[ "$#" -eq 0 ] && echo "usage $0 <project_root|\${BASH_SOURCE[0]}> <args>" && exit 0
|
|
4
4
|
[ -f "$1" ] && set -- "$(cd "$(dirname "$1")" && pwd)" "${@:2}"
|
|
5
5
|
project_root="$(cd "$1" && pwd)"; shift
|
|
@@ -202,32 +202,24 @@ function git_commit() {
|
|
|
202
202
|
}
|
|
203
203
|
function native_compose_file_set() {
|
|
204
204
|
if [ "$#" -gt 0 ]; then
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
cp -vf "$project_root/docker-compose.yml.old" "$project_root/docker-compose.yml"
|
|
208
|
-
;;
|
|
209
|
-
*)
|
|
210
|
-
cp -vf "$project_root/docker-compose.yml" "$project_root/docker-compose.yml.old"
|
|
211
|
-
setArch "$project_root/docker-compose.yml" "$project_root/docker-compose.${DKR_ARCH}"
|
|
212
|
-
cp -vf "$project_root/docker-compose.$1" "$project_root/docker-compose.yml"
|
|
213
|
-
;;
|
|
214
|
-
esac
|
|
205
|
+
setArch "$project_root/docker-compose.template" "$project_root/docker-compose.${DKR_ARCH}"
|
|
206
|
+
cp -vf "$project_root/docker-compose.$1" "$project_root/docker-compose.yml"
|
|
215
207
|
else
|
|
216
208
|
native_compose_file_set "${DKR_ARCH}"
|
|
217
209
|
fi
|
|
218
210
|
}
|
|
219
211
|
function balena_push() {
|
|
220
|
-
|
|
212
|
+
apps=("$#")
|
|
221
213
|
i=0
|
|
222
|
-
[ "$#" -gt 0 ] && for a in "$@"; do
|
|
223
|
-
for a in "${!
|
|
214
|
+
[ "$#" -gt 0 ] && for a in "$@"; do apps+=("$a"); done
|
|
215
|
+
for a in "${!apps[@]}"; do
|
|
224
216
|
[ "$a" = 0 ] && continue
|
|
225
|
-
printf "[%s]: %s " "$a" "${
|
|
217
|
+
printf "[%s]: %s " "$a" "${apps[$a]}"
|
|
226
218
|
done
|
|
227
|
-
log_daemon_msg "Found ${
|
|
228
|
-
read -rp "Where do you want to push [1-${
|
|
229
|
-
log_daemon_msg "${
|
|
230
|
-
bash -c "balena push ${
|
|
219
|
+
log_daemon_msg "Found ${apps[0]} apps."
|
|
220
|
+
read -rp "Where do you want to push [1-${apps[0]}] ? " i
|
|
221
|
+
log_daemon_msg "${apps[$i]} was selected"
|
|
222
|
+
bash -c "balena push ${apps[$i]}"
|
|
231
223
|
}
|
|
232
224
|
set -- "${saved[@]}"
|
|
233
225
|
while true; do
|
|
@@ -267,7 +259,7 @@ while true; do
|
|
|
267
259
|
native_compose_file_set
|
|
268
260
|
if command -v balena > /dev/null; then
|
|
269
261
|
# shellcheck disable=SC2046
|
|
270
|
-
balena_push $(balena
|
|
262
|
+
balena_push $(balena apps | awk '{if (NR>1) print $2}') || true
|
|
271
263
|
else
|
|
272
264
|
log_warning_msg "Balena Cloud not installed. Using git push."
|
|
273
265
|
git push -uf balena || true
|
package/docker-compose.aarch64
DELETED
|
File without changes
|
package/docker-compose.yml
DELETED
|
File without changes
|
package/package-lock.json.moved
DELETED
|
@@ -1,372 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "balena-cloud",
|
|
3
|
-
"version": "1.0.33",
|
|
4
|
-
"lockfileVersion": 2,
|
|
5
|
-
"requires": true,
|
|
6
|
-
"packages": {
|
|
7
|
-
"": {
|
|
8
|
-
"version": "1.0.33",
|
|
9
|
-
"license": "Apache-2.0",
|
|
10
|
-
"dependencies": {
|
|
11
|
-
"balena-cloud": "^1.0.32",
|
|
12
|
-
"shelljs": "^0.8.4"
|
|
13
|
-
},
|
|
14
|
-
"bin": {
|
|
15
|
-
"auto_reboot": "vendor/cni/auto_reboot.sh",
|
|
16
|
-
"balena_deploy": "vendor/cni/balena_deploy.sh",
|
|
17
|
-
"docker_build": "vendor/cni/docker_build.sh",
|
|
18
|
-
"init_functions": "vendor/cni/init_functions.sh",
|
|
19
|
-
"post_install": "vendor/cni/post_install.sh"
|
|
20
|
-
}
|
|
21
|
-
},
|
|
22
|
-
"node_modules/balanced-match": {
|
|
23
|
-
"version": "1.0.2",
|
|
24
|
-
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
|
25
|
-
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
|
|
26
|
-
},
|
|
27
|
-
"node_modules/balena-cloud": {
|
|
28
|
-
"version": "1.0.32",
|
|
29
|
-
"resolved": "https://registry.npmjs.org/balena-cloud/-/balena-cloud-1.0.32.tgz",
|
|
30
|
-
"integrity": "sha512-as8g/gI0m+jjq/lTfGc1sHfMf+tU0PxESA95Tkoha9zKsHiupXRgX6YlJf3qNvZ3Vxb1iyP0o/SL1ZtYtdCM/w==",
|
|
31
|
-
"dependencies": {
|
|
32
|
-
"shelljs": "^0.8.4"
|
|
33
|
-
},
|
|
34
|
-
"bin": {
|
|
35
|
-
"auto_reboot": "vendor/cni/auto_reboot.sh",
|
|
36
|
-
"balena_deploy": "vendor/cni/balena_deploy.sh",
|
|
37
|
-
"docker_build": "vendor/cni/docker_build.sh",
|
|
38
|
-
"init_functions": "vendor/cni/init_functions.sh",
|
|
39
|
-
"post_install": "vendor/cni/post_install.sh"
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
"node_modules/brace-expansion": {
|
|
43
|
-
"version": "1.1.11",
|
|
44
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
|
|
45
|
-
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
|
|
46
|
-
"dependencies": {
|
|
47
|
-
"balanced-match": "^1.0.0",
|
|
48
|
-
"concat-map": "0.0.1"
|
|
49
|
-
}
|
|
50
|
-
},
|
|
51
|
-
"node_modules/concat-map": {
|
|
52
|
-
"version": "0.0.1",
|
|
53
|
-
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
|
54
|
-
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
|
|
55
|
-
},
|
|
56
|
-
"node_modules/fs.realpath": {
|
|
57
|
-
"version": "1.0.0",
|
|
58
|
-
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
|
|
59
|
-
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
|
|
60
|
-
},
|
|
61
|
-
"node_modules/function-bind": {
|
|
62
|
-
"version": "1.1.1",
|
|
63
|
-
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
|
|
64
|
-
"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
|
|
65
|
-
},
|
|
66
|
-
"node_modules/glob": {
|
|
67
|
-
"version": "7.2.3",
|
|
68
|
-
"resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
|
|
69
|
-
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
70
|
-
"dependencies": {
|
|
71
|
-
"fs.realpath": "^1.0.0",
|
|
72
|
-
"inflight": "^1.0.4",
|
|
73
|
-
"inherits": "2",
|
|
74
|
-
"minimatch": "^3.1.1",
|
|
75
|
-
"once": "^1.3.0",
|
|
76
|
-
"path-is-absolute": "^1.0.0"
|
|
77
|
-
},
|
|
78
|
-
"engines": {
|
|
79
|
-
"node": "*"
|
|
80
|
-
},
|
|
81
|
-
"funding": {
|
|
82
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
83
|
-
}
|
|
84
|
-
},
|
|
85
|
-
"node_modules/has": {
|
|
86
|
-
"version": "1.0.3",
|
|
87
|
-
"resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
|
|
88
|
-
"integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
|
|
89
|
-
"dependencies": {
|
|
90
|
-
"function-bind": "^1.1.1"
|
|
91
|
-
},
|
|
92
|
-
"engines": {
|
|
93
|
-
"node": ">= 0.4.0"
|
|
94
|
-
}
|
|
95
|
-
},
|
|
96
|
-
"node_modules/inflight": {
|
|
97
|
-
"version": "1.0.6",
|
|
98
|
-
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
|
|
99
|
-
"integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
|
|
100
|
-
"dependencies": {
|
|
101
|
-
"once": "^1.3.0",
|
|
102
|
-
"wrappy": "1"
|
|
103
|
-
}
|
|
104
|
-
},
|
|
105
|
-
"node_modules/inherits": {
|
|
106
|
-
"version": "2.0.4",
|
|
107
|
-
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
|
108
|
-
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
|
109
|
-
},
|
|
110
|
-
"node_modules/interpret": {
|
|
111
|
-
"version": "1.4.0",
|
|
112
|
-
"resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz",
|
|
113
|
-
"integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==",
|
|
114
|
-
"engines": {
|
|
115
|
-
"node": ">= 0.10"
|
|
116
|
-
}
|
|
117
|
-
},
|
|
118
|
-
"node_modules/is-core-module": {
|
|
119
|
-
"version": "2.9.0",
|
|
120
|
-
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz",
|
|
121
|
-
"integrity": "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==",
|
|
122
|
-
"dependencies": {
|
|
123
|
-
"has": "^1.0.3"
|
|
124
|
-
},
|
|
125
|
-
"funding": {
|
|
126
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
127
|
-
}
|
|
128
|
-
},
|
|
129
|
-
"node_modules/minimatch": {
|
|
130
|
-
"version": "3.1.2",
|
|
131
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
|
|
132
|
-
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
|
|
133
|
-
"dependencies": {
|
|
134
|
-
"brace-expansion": "^1.1.7"
|
|
135
|
-
},
|
|
136
|
-
"engines": {
|
|
137
|
-
"node": "*"
|
|
138
|
-
}
|
|
139
|
-
},
|
|
140
|
-
"node_modules/once": {
|
|
141
|
-
"version": "1.4.0",
|
|
142
|
-
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
|
143
|
-
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
|
|
144
|
-
"dependencies": {
|
|
145
|
-
"wrappy": "1"
|
|
146
|
-
}
|
|
147
|
-
},
|
|
148
|
-
"node_modules/path-is-absolute": {
|
|
149
|
-
"version": "1.0.1",
|
|
150
|
-
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
|
|
151
|
-
"integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
|
|
152
|
-
"engines": {
|
|
153
|
-
"node": ">=0.10.0"
|
|
154
|
-
}
|
|
155
|
-
},
|
|
156
|
-
"node_modules/path-parse": {
|
|
157
|
-
"version": "1.0.7",
|
|
158
|
-
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
|
|
159
|
-
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
|
|
160
|
-
},
|
|
161
|
-
"node_modules/rechoir": {
|
|
162
|
-
"version": "0.6.2",
|
|
163
|
-
"resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz",
|
|
164
|
-
"integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==",
|
|
165
|
-
"dependencies": {
|
|
166
|
-
"resolve": "^1.1.6"
|
|
167
|
-
},
|
|
168
|
-
"engines": {
|
|
169
|
-
"node": ">= 0.10"
|
|
170
|
-
}
|
|
171
|
-
},
|
|
172
|
-
"node_modules/resolve": {
|
|
173
|
-
"version": "1.22.1",
|
|
174
|
-
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz",
|
|
175
|
-
"integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==",
|
|
176
|
-
"dependencies": {
|
|
177
|
-
"is-core-module": "^2.9.0",
|
|
178
|
-
"path-parse": "^1.0.7",
|
|
179
|
-
"supports-preserve-symlinks-flag": "^1.0.0"
|
|
180
|
-
},
|
|
181
|
-
"bin": {
|
|
182
|
-
"resolve": "bin/resolve"
|
|
183
|
-
},
|
|
184
|
-
"funding": {
|
|
185
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
186
|
-
}
|
|
187
|
-
},
|
|
188
|
-
"node_modules/shelljs": {
|
|
189
|
-
"version": "0.8.5",
|
|
190
|
-
"resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz",
|
|
191
|
-
"integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==",
|
|
192
|
-
"dependencies": {
|
|
193
|
-
"glob": "^7.0.0",
|
|
194
|
-
"interpret": "^1.0.0",
|
|
195
|
-
"rechoir": "^0.6.2"
|
|
196
|
-
},
|
|
197
|
-
"bin": {
|
|
198
|
-
"shjs": "bin/shjs"
|
|
199
|
-
},
|
|
200
|
-
"engines": {
|
|
201
|
-
"node": ">=4"
|
|
202
|
-
}
|
|
203
|
-
},
|
|
204
|
-
"node_modules/supports-preserve-symlinks-flag": {
|
|
205
|
-
"version": "1.0.0",
|
|
206
|
-
"resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
|
|
207
|
-
"integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
|
|
208
|
-
"engines": {
|
|
209
|
-
"node": ">= 0.4"
|
|
210
|
-
},
|
|
211
|
-
"funding": {
|
|
212
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
213
|
-
}
|
|
214
|
-
},
|
|
215
|
-
"node_modules/wrappy": {
|
|
216
|
-
"version": "1.0.2",
|
|
217
|
-
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
|
218
|
-
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
|
|
219
|
-
}
|
|
220
|
-
},
|
|
221
|
-
"dependencies": {
|
|
222
|
-
"balanced-match": {
|
|
223
|
-
"version": "1.0.2",
|
|
224
|
-
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
|
225
|
-
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
|
|
226
|
-
},
|
|
227
|
-
"balena-cloud": {
|
|
228
|
-
"version": "1.0.32",
|
|
229
|
-
"resolved": "https://registry.npmjs.org/balena-cloud/-/balena-cloud-1.0.32.tgz",
|
|
230
|
-
"integrity": "sha512-as8g/gI0m+jjq/lTfGc1sHfMf+tU0PxESA95Tkoha9zKsHiupXRgX6YlJf3qNvZ3Vxb1iyP0o/SL1ZtYtdCM/w==",
|
|
231
|
-
"requires": {
|
|
232
|
-
"shelljs": "^0.8.4"
|
|
233
|
-
}
|
|
234
|
-
},
|
|
235
|
-
"brace-expansion": {
|
|
236
|
-
"version": "1.1.11",
|
|
237
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
|
|
238
|
-
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
|
|
239
|
-
"requires": {
|
|
240
|
-
"balanced-match": "^1.0.0",
|
|
241
|
-
"concat-map": "0.0.1"
|
|
242
|
-
}
|
|
243
|
-
},
|
|
244
|
-
"concat-map": {
|
|
245
|
-
"version": "0.0.1",
|
|
246
|
-
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
|
247
|
-
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
|
|
248
|
-
},
|
|
249
|
-
"fs.realpath": {
|
|
250
|
-
"version": "1.0.0",
|
|
251
|
-
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
|
|
252
|
-
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
|
|
253
|
-
},
|
|
254
|
-
"function-bind": {
|
|
255
|
-
"version": "1.1.1",
|
|
256
|
-
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
|
|
257
|
-
"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
|
|
258
|
-
},
|
|
259
|
-
"glob": {
|
|
260
|
-
"version": "7.2.3",
|
|
261
|
-
"resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
|
|
262
|
-
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
263
|
-
"requires": {
|
|
264
|
-
"fs.realpath": "^1.0.0",
|
|
265
|
-
"inflight": "^1.0.4",
|
|
266
|
-
"inherits": "2",
|
|
267
|
-
"minimatch": "^3.1.1",
|
|
268
|
-
"once": "^1.3.0",
|
|
269
|
-
"path-is-absolute": "^1.0.0"
|
|
270
|
-
}
|
|
271
|
-
},
|
|
272
|
-
"has": {
|
|
273
|
-
"version": "1.0.3",
|
|
274
|
-
"resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
|
|
275
|
-
"integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
|
|
276
|
-
"requires": {
|
|
277
|
-
"function-bind": "^1.1.1"
|
|
278
|
-
}
|
|
279
|
-
},
|
|
280
|
-
"inflight": {
|
|
281
|
-
"version": "1.0.6",
|
|
282
|
-
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
|
|
283
|
-
"integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
|
|
284
|
-
"requires": {
|
|
285
|
-
"once": "^1.3.0",
|
|
286
|
-
"wrappy": "1"
|
|
287
|
-
}
|
|
288
|
-
},
|
|
289
|
-
"inherits": {
|
|
290
|
-
"version": "2.0.4",
|
|
291
|
-
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
|
292
|
-
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
|
293
|
-
},
|
|
294
|
-
"interpret": {
|
|
295
|
-
"version": "1.4.0",
|
|
296
|
-
"resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz",
|
|
297
|
-
"integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA=="
|
|
298
|
-
},
|
|
299
|
-
"is-core-module": {
|
|
300
|
-
"version": "2.9.0",
|
|
301
|
-
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz",
|
|
302
|
-
"integrity": "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==",
|
|
303
|
-
"requires": {
|
|
304
|
-
"has": "^1.0.3"
|
|
305
|
-
}
|
|
306
|
-
},
|
|
307
|
-
"minimatch": {
|
|
308
|
-
"version": "3.1.2",
|
|
309
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
|
|
310
|
-
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
|
|
311
|
-
"requires": {
|
|
312
|
-
"brace-expansion": "^1.1.7"
|
|
313
|
-
}
|
|
314
|
-
},
|
|
315
|
-
"once": {
|
|
316
|
-
"version": "1.4.0",
|
|
317
|
-
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
|
318
|
-
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
|
|
319
|
-
"requires": {
|
|
320
|
-
"wrappy": "1"
|
|
321
|
-
}
|
|
322
|
-
},
|
|
323
|
-
"path-is-absolute": {
|
|
324
|
-
"version": "1.0.1",
|
|
325
|
-
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
|
|
326
|
-
"integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="
|
|
327
|
-
},
|
|
328
|
-
"path-parse": {
|
|
329
|
-
"version": "1.0.7",
|
|
330
|
-
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
|
|
331
|
-
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
|
|
332
|
-
},
|
|
333
|
-
"rechoir": {
|
|
334
|
-
"version": "0.6.2",
|
|
335
|
-
"resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz",
|
|
336
|
-
"integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==",
|
|
337
|
-
"requires": {
|
|
338
|
-
"resolve": "^1.1.6"
|
|
339
|
-
}
|
|
340
|
-
},
|
|
341
|
-
"resolve": {
|
|
342
|
-
"version": "1.22.1",
|
|
343
|
-
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz",
|
|
344
|
-
"integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==",
|
|
345
|
-
"requires": {
|
|
346
|
-
"is-core-module": "^2.9.0",
|
|
347
|
-
"path-parse": "^1.0.7",
|
|
348
|
-
"supports-preserve-symlinks-flag": "^1.0.0"
|
|
349
|
-
}
|
|
350
|
-
},
|
|
351
|
-
"shelljs": {
|
|
352
|
-
"version": "0.8.5",
|
|
353
|
-
"resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz",
|
|
354
|
-
"integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==",
|
|
355
|
-
"requires": {
|
|
356
|
-
"glob": "^7.0.0",
|
|
357
|
-
"interpret": "^1.0.0",
|
|
358
|
-
"rechoir": "^0.6.2"
|
|
359
|
-
}
|
|
360
|
-
},
|
|
361
|
-
"supports-preserve-symlinks-flag": {
|
|
362
|
-
"version": "1.0.0",
|
|
363
|
-
"resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
|
|
364
|
-
"integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="
|
|
365
|
-
},
|
|
366
|
-
"wrappy": {
|
|
367
|
-
"version": "1.0.2",
|
|
368
|
-
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
|
369
|
-
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
|
|
370
|
-
}
|
|
371
|
-
}
|
|
372
|
-
}
|