2014-10-31 09:37:29 -04:00
|
|
|
{
|
2018-10-19 16:38:50 +02:00
|
|
|
"name": "balena-cli",
|
2021-11-22 04:25:10 +02:00
|
|
|
"version": "12.52.1",
|
2020-09-18 15:35:36 +01:00
|
|
|
"description": "The official balena Command Line Interface",
|
2019-08-28 19:51:56 +01:00
|
|
|
"main": "./build/app.js",
|
2018-10-19 16:38:50 +02:00
|
|
|
"homepage": "https://github.com/balena-io/balena-cli",
|
2014-12-09 15:46:47 -04:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2018-10-19 16:38:50 +02:00
|
|
|
"url": "git@github.com:balena-io/balena-cli.git"
|
2014-12-09 15:46:47 -04:00
|
|
|
},
|
|
|
|
"preferGlobal": true,
|
2017-11-23 13:04:48 +01:00
|
|
|
"files": [
|
2020-07-03 19:22:44 +01:00
|
|
|
"bin/.fast-boot.json",
|
2019-06-05 13:12:10 +01:00
|
|
|
"bin/",
|
2017-11-23 13:04:48 +01:00
|
|
|
"build/",
|
2017-11-23 13:12:03 +01:00
|
|
|
"doc/",
|
2019-07-02 19:15:32 +02:00
|
|
|
"lib/",
|
2019-07-02 20:20:07 +01:00
|
|
|
"patches/",
|
|
|
|
"*.md",
|
2020-06-26 16:05:16 +01:00
|
|
|
"npm-shrinkwrap.json",
|
|
|
|
"oclif.manifest.json"
|
2017-11-23 13:04:48 +01:00
|
|
|
],
|
2014-11-27 09:10:51 -04:00
|
|
|
"bin": {
|
2019-06-03 16:01:36 +01:00
|
|
|
"balena": "./bin/balena"
|
2014-11-27 09:10:51 -04:00
|
|
|
},
|
2017-12-12 18:02:37 +01:00
|
|
|
"pkg": {
|
|
|
|
"scripts": [
|
2020-07-02 00:45:54 +01:00
|
|
|
"build/**/*.js",
|
2020-07-31 15:35:20 +01:00
|
|
|
"node_modules/balena-sdk/es2018/index.js",
|
2020-09-16 23:40:59 +01:00
|
|
|
"node_modules/balena-sync/build/**/*.js",
|
2020-08-04 16:17:51 +03:00
|
|
|
"node_modules/pinejs-client-request/node_modules/pinejs-client-core/es2018/index.js",
|
2020-03-04 16:31:54 +00:00
|
|
|
"node_modules/resin-compose-parse/build/schemas/*.json"
|
2017-12-12 18:02:37 +01:00
|
|
|
],
|
|
|
|
"assets": [
|
2017-12-14 13:29:44 +01:00
|
|
|
"build/auth/pages/*.ejs",
|
2019-10-14 00:52:43 +01:00
|
|
|
"node_modules/resin-discoverable-services/services/**/*",
|
2020-06-15 23:53:01 +01:00
|
|
|
"node_modules/balena-sdk/node_modules/balena-pine/**/*",
|
|
|
|
"node_modules/balena-pine/**/*",
|
|
|
|
"node_modules/pinejs-client-core/**/*",
|
2020-03-02 17:13:16 +00:00
|
|
|
"node_modules/opn/xdg-open",
|
2020-03-11 01:12:07 +00:00
|
|
|
"node_modules/open/xdg-open",
|
2019-10-14 00:52:43 +01:00
|
|
|
"node_modules/windosu/*.bat",
|
2020-06-26 16:05:16 +01:00
|
|
|
"node_modules/windosu/*.cmd",
|
2021-05-22 00:44:45 +00:00
|
|
|
"npm-shrinkwrap.json",
|
2020-06-26 16:05:16 +01:00
|
|
|
"oclif.manifest.json"
|
2017-12-12 18:02:37 +01:00
|
|
|
]
|
|
|
|
},
|
2014-10-31 09:37:29 -04:00
|
|
|
"scripts": {
|
2020-07-13 21:58:32 +01:00
|
|
|
"postinstall": "node patches/apply-patches.js",
|
2019-05-23 01:44:08 +01:00
|
|
|
"prebuild": "rimraf build/ build-bin/",
|
2020-01-20 14:01:58 +00:00
|
|
|
"build": "npm run build:src && npm run catch-uncommitted",
|
2021-06-26 00:42:07 +01:00
|
|
|
"build:t": "npm run lint && npm run build:fast && npm run build:test",
|
2021-02-28 21:40:25 +01:00
|
|
|
"build:src": "npm run lint && npm run build:fast && npm run build:test && npm run build:doc && npm run build:completion",
|
2020-06-26 16:05:16 +01:00
|
|
|
"build:fast": "gulp pages && tsc && npx oclif-dev manifest",
|
2020-03-24 17:52:05 +00:00
|
|
|
"build:test": "tsc -P ./tsconfig.dev.json --noEmit && tsc -P ./tsconfig.js.json --noEmit",
|
2021-07-09 14:44:38 +01:00
|
|
|
"build:doc": "ts-node --transpile-only automation/capitanodoc/index.ts > doc/cli.markdown",
|
2021-02-28 21:40:25 +01:00
|
|
|
"build:completion": "node completion/generate-completion.js",
|
2020-03-10 16:56:42 +00:00
|
|
|
"build:standalone": "ts-node --transpile-only automation/run.ts build:standalone",
|
|
|
|
"build:installer": "ts-node --transpile-only automation/run.ts build:installer",
|
2019-06-06 15:19:35 +01:00
|
|
|
"package": "npm run build:fast && npm run build:standalone && npm run build:installer",
|
2020-03-10 16:56:42 +00:00
|
|
|
"release": "ts-node --transpile-only automation/run.ts release",
|
2017-11-23 13:49:47 +01:00
|
|
|
"pretest": "npm run build",
|
2020-08-06 12:20:25 +01:00
|
|
|
"test": "npm run test:shrinkwrap && npm run test:source && npm run test:standalone",
|
|
|
|
"test:shrinkwrap": "ts-node --transpile-only automation/run.ts test-shrinkwrap",
|
2020-08-11 16:03:36 +01:00
|
|
|
"test:source": "cross-env BALENA_CLI_TEST_TYPE=source mocha",
|
2020-07-09 19:48:06 +01:00
|
|
|
"test:standalone": "npm run build:standalone && npm run test:standalone:fast",
|
2020-11-15 00:51:35 +00:00
|
|
|
"test:standalone:fast": "cross-env BALENA_CLI_TEST_TYPE=standalone mocha --config .mocharc-standalone.js",
|
2020-07-09 19:48:06 +01:00
|
|
|
"test:fast": "npm run build:fast && npm run test:source",
|
2021-07-28 13:19:57 +00:00
|
|
|
"test:debug": "cross-env BALENA_CLI_TEST_TYPE=source mocha --inspect-brk=0.0.0.0",
|
2020-08-11 16:03:36 +01:00
|
|
|
"test:only": "npm run build:fast && cross-env BALENA_CLI_TEST_TYPE=source mocha \"tests/**/${npm_config_test}.spec.ts\"",
|
2020-03-10 16:56:42 +00:00
|
|
|
"catch-uncommitted": "ts-node --transpile-only automation/run.ts catch-uncommitted",
|
2020-02-06 13:10:28 +00:00
|
|
|
"ci": "npm run test && npm run catch-uncommitted",
|
2017-03-21 12:06:05 +03:00
|
|
|
"watch": "gulp watch",
|
2021-07-20 14:57:00 +01:00
|
|
|
"lint": "balena-lint -e ts -e js --fix automation/ completion/ lib/ typings/ tests/ bin/balena bin/balena-dev gulpfile.js .mocharc.js .mocharc-standalone.js",
|
2020-03-10 16:56:42 +00:00
|
|
|
"update": "ts-node --transpile-only ./automation/update-module.ts",
|
2020-07-03 19:22:44 +01:00
|
|
|
"prepare": "echo {} > bin/.fast-boot.json",
|
2017-09-14 15:59:31 +02:00
|
|
|
"prepublishOnly": "npm run build"
|
2014-10-31 09:37:29 -04:00
|
|
|
},
|
|
|
|
"keywords": [
|
2018-10-19 16:38:50 +02:00
|
|
|
"balena",
|
|
|
|
"balena.io",
|
|
|
|
"balenaCloud",
|
|
|
|
"balenaOS",
|
2014-10-31 09:37:29 -04:00
|
|
|
"resin",
|
2018-10-19 16:38:50 +02:00
|
|
|
"resin.io",
|
2014-10-31 09:37:29 -04:00
|
|
|
"git"
|
|
|
|
],
|
2021-06-21 23:14:36 +01:00
|
|
|
"author": "Balena Inc. (https://balena.io/)",
|
2016-01-03 23:58:51 -04:00
|
|
|
"license": "Apache-2.0",
|
2017-06-22 18:58:09 +02:00
|
|
|
"engines": {
|
2021-03-17 15:28:39 +00:00
|
|
|
"node": ">=10.20.0 <13.0.0",
|
|
|
|
"npm": "<7.0.0"
|
2017-06-22 18:58:09 +02:00
|
|
|
},
|
2019-10-17 21:12:40 +01:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2020-02-17 16:56:52 +00:00
|
|
|
"pre-commit": "node automation/check-npm-version.js && node automation/check-doc.js"
|
2019-10-17 21:12:40 +01:00
|
|
|
}
|
|
|
|
},
|
2019-04-02 12:26:21 +01:00
|
|
|
"oclif": {
|
|
|
|
"bin": "balena",
|
2020-10-02 13:42:23 +02:00
|
|
|
"commands": "./build/commands",
|
2020-09-04 16:34:34 +02:00
|
|
|
"helpClass": "./build/help",
|
2019-08-28 02:14:19 +01:00
|
|
|
"hooks": {
|
2020-09-07 14:35:35 +02:00
|
|
|
"prerun": "./build/hooks/prerun/track",
|
|
|
|
"command_not_found": "./build/hooks/command-not-found/suggest"
|
2019-08-28 02:14:19 +01:00
|
|
|
},
|
2019-04-02 12:26:21 +01:00
|
|
|
"macos": {
|
2019-06-19 00:59:56 +01:00
|
|
|
"identifier": "io.balena.cli",
|
2021-03-05 23:34:08 +00:00
|
|
|
"sign": "Developer ID Installer: Balena Ltd (66H43P8FRG)"
|
2020-09-04 16:34:34 +02:00
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
"@oclif/plugin-help"
|
|
|
|
]
|
2019-04-02 12:26:21 +01:00
|
|
|
},
|
2014-10-31 09:37:29 -04:00
|
|
|
"devDependencies": {
|
2021-07-20 14:57:00 +01:00
|
|
|
"@balena/lint": "^6.1.1",
|
2020-08-13 08:56:32 +01:00
|
|
|
"@oclif/config": "^1.17.0",
|
2021-03-22 16:03:44 +00:00
|
|
|
"@oclif/dev-cli": "^1.26.0",
|
2020-08-13 08:56:32 +01:00
|
|
|
"@oclif/parser": "^3.8.5",
|
2021-07-09 14:44:38 +01:00
|
|
|
"@octokit/plugin-throttling": "^3.5.1",
|
|
|
|
"@octokit/rest": "^18.6.7",
|
|
|
|
"@types/archiver": "^5.1.1",
|
|
|
|
"@types/bluebird": "^3.5.36",
|
|
|
|
"@types/body-parser": "^1.19.1",
|
|
|
|
"@types/chai": "^4.2.21",
|
|
|
|
"@types/chai-as-promised": "^7.1.4",
|
|
|
|
"@types/cli-truncate": "^2.0.0",
|
|
|
|
"@types/common-tags": "^1.8.1",
|
|
|
|
"@types/dockerode": "^3.2.4",
|
|
|
|
"@types/ejs": "^3.0.7",
|
|
|
|
"@types/express": "^4.17.13",
|
|
|
|
"@types/fs-extra": "^9.0.12",
|
|
|
|
"@types/global-agent": "^2.1.1",
|
|
|
|
"@types/global-tunnel-ng": "^2.1.1",
|
|
|
|
"@types/http-proxy": "^1.17.7",
|
2019-09-30 15:08:28 +01:00
|
|
|
"@types/intercept-stdout": "^0.1.0",
|
2020-02-21 00:31:53 +00:00
|
|
|
"@types/is-root": "^2.1.2",
|
2021-07-09 14:44:38 +01:00
|
|
|
"@types/js-yaml": "^4.0.2",
|
|
|
|
"@types/jsonwebtoken": "^8.5.4",
|
|
|
|
"@types/klaw": "^3.0.2",
|
|
|
|
"@types/lodash": "^4.14.171",
|
|
|
|
"@types/mixpanel": "^2.14.3",
|
|
|
|
"@types/mocha": "^8.2.3",
|
2020-03-06 21:19:24 +00:00
|
|
|
"@types/mock-require": "^2.0.0",
|
2021-07-09 14:44:38 +01:00
|
|
|
"@types/moment-duration-format": "^2.2.3",
|
|
|
|
"@types/ndjson": "^2.0.1",
|
2020-08-13 08:56:32 +01:00
|
|
|
"@types/net-keepalive": "^0.4.1",
|
2021-07-09 14:44:38 +01:00
|
|
|
"@types/nock": "^11.1.0",
|
|
|
|
"@types/node": "^10.17.60",
|
2020-04-25 12:00:36 +01:00
|
|
|
"@types/node-cleanup": "^2.1.1",
|
2020-06-30 20:54:35 +01:00
|
|
|
"@types/parse-link-header": "^1.0.0",
|
2021-07-09 14:44:38 +01:00
|
|
|
"@types/prettyjson": "^0.0.30",
|
|
|
|
"@types/progress-stream": "^2.0.2",
|
|
|
|
"@types/request": "^2.48.6",
|
2019-08-07 12:31:03 +01:00
|
|
|
"@types/rewire": "^2.5.28",
|
2021-07-09 14:44:38 +01:00
|
|
|
"@types/rimraf": "^3.0.1",
|
2019-05-23 01:44:08 +01:00
|
|
|
"@types/shell-escape": "^0.2.0",
|
2021-07-09 14:44:38 +01:00
|
|
|
"@types/sinon": "^10.0.2",
|
2020-04-25 12:00:36 +01:00
|
|
|
"@types/split": "^1.0.0",
|
2021-07-09 14:44:38 +01:00
|
|
|
"@types/stream-to-promise": "^2.2.1",
|
|
|
|
"@types/tar-stream": "^2.2.1",
|
2020-08-13 08:56:32 +01:00
|
|
|
"@types/through2": "^2.0.36",
|
2021-07-09 14:44:38 +01:00
|
|
|
"@types/tmp": "^0.2.1",
|
|
|
|
"@types/which": "^2.0.1",
|
|
|
|
"archiver": "^5.3.0",
|
2021-04-27 14:58:54 +01:00
|
|
|
"catch-uncommitted": "^2.0.0",
|
2021-07-09 14:44:38 +01:00
|
|
|
"chai": "^4.3.4",
|
2019-08-07 12:31:03 +01:00
|
|
|
"chai-as-promised": "^7.1.1",
|
2021-07-09 14:44:38 +01:00
|
|
|
"cross-env": "^7.0.3",
|
2020-06-17 00:38:03 +01:00
|
|
|
"deep-object-diff": "^1.1.0",
|
2021-07-09 14:44:38 +01:00
|
|
|
"diff": "^5.0.0",
|
|
|
|
"electron-notarize": "^1.0.0",
|
2015-03-16 08:51:26 -04:00
|
|
|
"ent": "^2.2.0",
|
2020-02-29 21:52:09 +00:00
|
|
|
"filehound": "^1.17.4",
|
2021-07-09 14:44:38 +01:00
|
|
|
"fs-extra": "^9.1.0",
|
|
|
|
"gulp": "^4.0.2",
|
|
|
|
"gulp-inline-source": "^4.0.0",
|
2020-06-15 23:53:04 +01:00
|
|
|
"http-proxy": "^1.18.1",
|
2021-07-09 14:44:38 +01:00
|
|
|
"husky": "^4.3.8",
|
2019-09-06 14:43:53 +01:00
|
|
|
"intercept-stdout": "^0.1.2",
|
2020-08-10 14:30:01 +01:00
|
|
|
"jsonwebtoken": "^8.5.1",
|
2021-07-09 14:44:38 +01:00
|
|
|
"mocha": "^8.4.0",
|
2020-03-06 21:19:24 +00:00
|
|
|
"mock-require": "^3.0.3",
|
2021-07-09 14:44:38 +01:00
|
|
|
"nock": "^13.1.1",
|
|
|
|
"parse-link-header": "^1.0.1",
|
2020-08-27 11:50:57 +01:00
|
|
|
"pkg": "^4.4.9",
|
2020-01-24 22:20:39 +00:00
|
|
|
"publish-release": "^1.6.1",
|
2020-11-11 17:05:10 +00:00
|
|
|
"rewire": "^5.0.0",
|
2021-07-09 14:44:38 +01:00
|
|
|
"simple-git": "^2.40.0",
|
2021-06-26 00:42:07 +01:00
|
|
|
"sinon": "^11.1.2",
|
2021-07-09 14:44:38 +01:00
|
|
|
"ts-node": "^10.0.0",
|
|
|
|
"typescript": "^4.3.5"
|
2014-10-31 11:59:23 -04:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-05-01 12:18:11 +01:00
|
|
|
"@balena/dockerignore": "^1.0.2",
|
2020-06-01 13:29:28 +01:00
|
|
|
"@balena/es-version": "^1.0.0",
|
2020-08-13 08:56:32 +01:00
|
|
|
"@oclif/command": "^1.8.0",
|
2017-05-19 01:25:01 +03:00
|
|
|
"@resin.io/valid-email": "^0.1.0",
|
2021-09-29 23:13:09 +01:00
|
|
|
"@sentry/node": "^6.13.2",
|
2020-09-07 14:35:35 +02:00
|
|
|
"@types/fast-levenshtein": "0.0.1",
|
2020-08-13 08:56:32 +01:00
|
|
|
"@types/update-notifier": "^4.1.1",
|
2018-10-20 14:54:33 +02:00
|
|
|
"@zeit/dockerignore": "0.0.3",
|
2018-07-11 20:56:13 +02:00
|
|
|
"JSONStream": "^1.0.3",
|
2021-04-07 17:16:30 +01:00
|
|
|
"balena-config-json": "^4.1.1",
|
2021-01-21 21:27:07 +02:00
|
|
|
"balena-device-init": "^6.0.0",
|
2020-12-07 11:30:51 +02:00
|
|
|
"balena-errors": "^4.7.1",
|
2021-01-21 21:27:07 +02:00
|
|
|
"balena-image-fs": "^7.0.6",
|
2021-09-13 18:26:08 +01:00
|
|
|
"balena-image-manager": "^7.1.0",
|
2021-10-11 09:19:39 -04:00
|
|
|
"balena-preload": "^11.0.0",
|
2021-08-26 15:05:50 +01:00
|
|
|
"balena-release": "^3.2.0",
|
2021-09-20 14:21:39 +05:30
|
|
|
"balena-sdk": "^15.51.1",
|
2020-07-31 16:25:48 +01:00
|
|
|
"balena-semver": "^2.3.0",
|
2021-08-16 14:36:00 +01:00
|
|
|
"balena-settings-client": "^4.0.7",
|
2020-09-28 22:08:07 +00:00
|
|
|
"balena-settings-storage": "^7.0.0",
|
2020-07-31 16:25:48 +01:00
|
|
|
"balena-sync": "^11.0.2",
|
2020-01-24 22:20:39 +00:00
|
|
|
"bluebird": "^3.7.2",
|
2019-05-10 15:38:12 +01:00
|
|
|
"body-parser": "^1.19.0",
|
2020-03-02 17:13:16 +00:00
|
|
|
"chalk": "^3.0.0",
|
2020-11-11 17:05:10 +00:00
|
|
|
"chokidar": "^3.4.3",
|
2020-08-13 17:01:19 +01:00
|
|
|
"cli-truncate": "^2.1.0",
|
2018-10-16 11:25:37 +01:00
|
|
|
"color-hash": "^1.0.3",
|
2015-08-13 08:11:58 -04:00
|
|
|
"columnify": "^1.5.2",
|
2018-04-11 19:31:03 +02:00
|
|
|
"common-tags": "^1.7.2",
|
2019-05-23 01:29:54 +01:00
|
|
|
"denymount": "^2.3.0",
|
2021-04-27 14:58:54 +01:00
|
|
|
"docker-modem": "^3.0.0",
|
|
|
|
"docker-progress": "^5.0.0",
|
2020-04-23 13:46:19 +01:00
|
|
|
"docker-qemu-transpose": "^1.1.1",
|
2021-04-27 14:58:54 +01:00
|
|
|
"dockerode": "^3.3.0",
|
2020-08-13 08:56:32 +01:00
|
|
|
"ejs": "^3.1.3",
|
2021-04-07 17:14:13 +01:00
|
|
|
"etcher-sdk": "^6.2.1",
|
2018-11-28 20:15:12 +02:00
|
|
|
"event-stream": "3.3.4",
|
2017-11-23 13:49:47 +01:00
|
|
|
"express": "^4.13.3",
|
2020-06-24 15:20:20 +01:00
|
|
|
"fast-boot2": "^1.1.0",
|
2020-09-07 14:35:35 +02:00
|
|
|
"fast-levenshtein": "^3.0.0",
|
2021-05-15 16:18:14 +02:00
|
|
|
"file-disk": "^8.0.1",
|
2021-07-20 22:38:39 +01:00
|
|
|
"filenamify": "^4.3.0",
|
2020-08-13 17:01:19 +01:00
|
|
|
"get-stdin": "^8.0.0",
|
2021-07-20 22:38:39 +01:00
|
|
|
"glob": "^7.1.7",
|
2020-06-15 23:53:02 +01:00
|
|
|
"global-agent": "^2.1.12",
|
2018-02-05 15:55:26 +00:00
|
|
|
"global-tunnel-ng": "^2.1.1",
|
2021-06-26 00:42:07 +01:00
|
|
|
"got": "^11.8.2",
|
2017-12-12 00:37:56 +02:00
|
|
|
"humanize": "0.0.9",
|
2020-08-13 08:56:32 +01:00
|
|
|
"ignore": "^5.1.8",
|
|
|
|
"inquirer": "^7.3.3",
|
2019-10-14 00:52:43 +01:00
|
|
|
"is-elevated": "^3.0.0",
|
|
|
|
"is-root": "^2.1.0",
|
2021-03-20 22:10:18 +00:00
|
|
|
"js-yaml": "^4.0.0",
|
2018-08-01 16:43:06 +02:00
|
|
|
"klaw": "^3.0.0",
|
2020-08-07 18:27:31 +01:00
|
|
|
"livepush": "^3.5.0",
|
2021-07-20 17:18:16 +01:00
|
|
|
"lodash": "^4.17.21",
|
2018-08-15 13:13:06 +01:00
|
|
|
"minimatch": "^3.0.4",
|
2020-08-13 08:56:32 +01:00
|
|
|
"moment": "^2.27.0",
|
2020-01-24 22:20:39 +00:00
|
|
|
"moment-duration-format": "^2.3.2",
|
2021-04-09 22:41:30 +01:00
|
|
|
"ndjson": "^2.0.0",
|
2021-09-10 00:18:14 +01:00
|
|
|
"net-keepalive": "^3.0.0",
|
2017-10-06 11:05:24 +02:00
|
|
|
"node-cleanup": "^2.1.2",
|
2020-01-24 22:20:39 +00:00
|
|
|
"node-unzip-2": "^0.2.8",
|
2021-07-20 17:37:44 +01:00
|
|
|
"oclif": "^1.18.1",
|
2020-08-13 08:56:32 +01:00
|
|
|
"open": "^7.1.0",
|
2021-05-15 16:18:14 +02:00
|
|
|
"partitioninfo": "^6.0.2",
|
2021-03-22 16:00:20 +00:00
|
|
|
"patch-package": "^6.4.7",
|
2015-11-10 12:53:34 -04:00
|
|
|
"prettyjson": "^1.1.3",
|
2017-06-13 19:28:37 +02:00
|
|
|
"progress-stream": "^2.0.0",
|
2021-01-21 21:27:07 +02:00
|
|
|
"reconfix": "^1.0.0-v0-1-0-fork-46760acff4d165f5238bfac5e464256ef1944476",
|
2020-02-29 21:52:09 +00:00
|
|
|
"request": "^2.88.2",
|
2020-03-02 17:13:16 +00:00
|
|
|
"resin-cli-form": "^2.0.2",
|
2021-01-21 21:27:07 +02:00
|
|
|
"resin-cli-visuals": "^1.8.0",
|
2021-04-07 17:17:52 +01:00
|
|
|
"resin-compose-parse": "^2.1.3",
|
2020-01-24 22:20:39 +00:00
|
|
|
"resin-doodles": "^0.1.1",
|
2021-09-29 23:13:09 +01:00
|
|
|
"resin-multibuild": "^4.12.2",
|
2018-11-26 18:16:22 +00:00
|
|
|
"resin-stream-logger": "^0.1.2",
|
2020-02-29 21:52:09 +00:00
|
|
|
"rimraf": "^3.0.2",
|
2020-08-13 08:56:32 +01:00
|
|
|
"semver": "^7.3.2",
|
2019-10-14 00:52:43 +01:00
|
|
|
"shell-escape": "^0.2.0",
|
2018-03-15 15:16:33 +02:00
|
|
|
"split": "^1.0.1",
|
2020-03-02 17:13:16 +00:00
|
|
|
"stream-to-promise": "^2.2.0",
|
|
|
|
"string-width": "^4.2.0",
|
2018-03-15 15:16:33 +02:00
|
|
|
"strip-ansi-stream": "^1.0.0",
|
2020-08-13 08:56:32 +01:00
|
|
|
"tar-stream": "^2.1.3",
|
2020-08-13 23:05:11 +01:00
|
|
|
"tar-utils": "^2.1.1",
|
2017-12-12 00:37:56 +02:00
|
|
|
"through2": "^2.0.3",
|
2020-08-04 16:24:02 +01:00
|
|
|
"tmp": "^0.2.1",
|
2020-07-31 16:25:48 +01:00
|
|
|
"typed-error": "^3.2.1",
|
2020-03-02 17:13:16 +00:00
|
|
|
"update-notifier": "^4.1.0",
|
2020-01-09 00:13:32 +00:00
|
|
|
"which": "^2.0.2",
|
2017-12-12 00:37:56 +02:00
|
|
|
"window-size": "^1.1.0"
|
2017-03-28 12:09:58 +03:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2019-10-14 00:52:43 +01:00
|
|
|
"windosu": "^0.3.0"
|
2021-07-10 00:30:25 +03:00
|
|
|
},
|
|
|
|
"versionist": {
|
2021-11-22 04:25:10 +02:00
|
|
|
"publishedAt": "2021-11-22T01:53:27.392Z"
|
2014-10-31 09:37:29 -04:00
|
|
|
}
|
2018-02-20 17:12:45 +00:00
|
|
|
}
|