2014-10-31 13:37:29 +00:00
|
|
|
{
|
2018-10-19 14:38:50 +00:00
|
|
|
"name": "balena-cli",
|
2020-09-04 11:09:05 +00:00
|
|
|
"version": "12.16.0",
|
2018-10-19 14:38:50 +00:00
|
|
|
"description": "The official balena CLI tool",
|
2019-08-28 18:51:56 +00:00
|
|
|
"main": "./build/app.js",
|
2018-10-19 14:38:50 +00:00
|
|
|
"homepage": "https://github.com/balena-io/balena-cli",
|
2014-12-09 19:46:47 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2018-10-19 14:38:50 +00:00
|
|
|
"url": "git@github.com:balena-io/balena-cli.git"
|
2014-12-09 19:46:47 +00:00
|
|
|
},
|
|
|
|
"preferGlobal": true,
|
2017-11-23 12:04:48 +00:00
|
|
|
"files": [
|
2020-07-03 18:22:44 +00:00
|
|
|
"bin/.fast-boot.json",
|
2019-06-05 12:12:10 +00:00
|
|
|
"bin/",
|
2017-11-23 12:04:48 +00:00
|
|
|
"build/",
|
2017-11-23 12:12:03 +00:00
|
|
|
"doc/",
|
2019-07-02 17:15:32 +00:00
|
|
|
"lib/",
|
2019-07-02 19:20:07 +00:00
|
|
|
"patches/",
|
|
|
|
"*.md",
|
2020-06-26 15:05:16 +00:00
|
|
|
"npm-shrinkwrap.json",
|
|
|
|
"oclif.manifest.json"
|
2017-11-23 12:04:48 +00:00
|
|
|
],
|
2014-11-27 13:10:51 +00:00
|
|
|
"bin": {
|
2019-06-03 15:01:36 +00:00
|
|
|
"balena": "./bin/balena"
|
2014-11-27 13:10:51 +00:00
|
|
|
},
|
2017-12-12 17:02:37 +00:00
|
|
|
"pkg": {
|
|
|
|
"scripts": [
|
2020-07-01 23:45:54 +00:00
|
|
|
"build/**/*.js",
|
2020-07-31 14:35:20 +00:00
|
|
|
"node_modules/balena-sdk/es2018/index.js",
|
2018-10-19 14:38:50 +00:00
|
|
|
"node_modules/balena-sync/build/sync/*.js",
|
2020-08-04 13:17:51 +00: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 17:02:37 +00:00
|
|
|
],
|
|
|
|
"assets": [
|
2017-12-14 12:29:44 +00:00
|
|
|
"build/auth/pages/*.ejs",
|
2019-10-13 23:52:43 +00:00
|
|
|
"node_modules/resin-discoverable-services/services/**/*",
|
2020-06-15 22:53:01 +00: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-13 23:52:43 +00:00
|
|
|
"node_modules/windosu/*.bat",
|
2020-06-26 15:05:16 +00:00
|
|
|
"node_modules/windosu/*.cmd",
|
|
|
|
"oclif.manifest.json"
|
2017-12-12 17:02:37 +00:00
|
|
|
]
|
|
|
|
},
|
2014-10-31 13:37:29 +00:00
|
|
|
"scripts": {
|
2020-07-13 20:58:32 +00:00
|
|
|
"postinstall": "node patches/apply-patches.js",
|
2019-05-23 00:44:08 +00:00
|
|
|
"prebuild": "rimraf build/ build-bin/",
|
2020-01-20 14:01:58 +00:00
|
|
|
"build": "npm run build:src && npm run catch-uncommitted",
|
2020-03-24 17:52:05 +00:00
|
|
|
"build:src": "npm run lint && npm run build:fast && npm run build:test && npm run build:doc",
|
2020-06-26 15:05:16 +00: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",
|
2020-03-10 16:56:42 +00:00
|
|
|
"build:doc": "mkdirp doc/ && ts-node --transpile-only automation/capitanodoc/index.ts > doc/cli.markdown",
|
|
|
|
"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 14:19:35 +00: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 12:49:47 +00:00
|
|
|
"pretest": "npm run build",
|
2020-08-06 11:20:25 +00: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 15:03:36 +00:00
|
|
|
"test:source": "cross-env BALENA_CLI_TEST_TYPE=source mocha",
|
2020-07-09 18:48:06 +00:00
|
|
|
"test:standalone": "npm run build:standalone && npm run test:standalone:fast",
|
2020-08-11 15:03:36 +00:00
|
|
|
"test:standalone:fast": "cross-env BALENA_CLI_TEST_TYPE=standalone mocha",
|
2020-07-09 18:48:06 +00:00
|
|
|
"test:fast": "npm run build:fast && npm run test:source",
|
2020-08-11 15:03:36 +00: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 09:06:05 +00:00
|
|
|
"watch": "gulp watch",
|
2020-04-30 16:41:01 +00:00
|
|
|
"lint": "balena-lint -e ts -e js --typescript --fix automation/ lib/ typings/ tests/ gulpfile.js",
|
2020-03-10 16:56:42 +00:00
|
|
|
"update": "ts-node --transpile-only ./automation/update-module.ts",
|
2020-07-03 18:22:44 +00:00
|
|
|
"prepare": "echo {} > bin/.fast-boot.json",
|
2017-09-14 13:59:31 +00:00
|
|
|
"prepublishOnly": "npm run build"
|
2014-10-31 13:37:29 +00:00
|
|
|
},
|
|
|
|
"keywords": [
|
2018-10-19 14:38:50 +00:00
|
|
|
"balena",
|
|
|
|
"balena.io",
|
|
|
|
"balenaCloud",
|
|
|
|
"balenaOS",
|
2014-10-31 13:37:29 +00:00
|
|
|
"resin",
|
2018-10-19 14:38:50 +00:00
|
|
|
"resin.io",
|
2014-10-31 13:37:29 +00:00
|
|
|
"git"
|
|
|
|
],
|
2018-10-19 14:38:50 +00:00
|
|
|
"author": "Juan Cruz Viotti <juan@balena.io>",
|
2016-01-04 03:58:51 +00:00
|
|
|
"license": "Apache-2.0",
|
2017-06-22 16:58:09 +00:00
|
|
|
"engines": {
|
2020-07-13 17:03:37 +00:00
|
|
|
"node": ">=10.20.0"
|
2017-06-22 16:58:09 +00:00
|
|
|
},
|
2019-10-17 20:12:40 +00: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 20:12:40 +00:00
|
|
|
}
|
|
|
|
},
|
2020-08-11 15:03:36 +00:00
|
|
|
"mocha": {
|
|
|
|
"reporter": "spec",
|
|
|
|
"require": "ts-node/register/transpile-only",
|
2020-08-11 15:04:28 +00:00
|
|
|
"file": "./tests/config-tests",
|
2020-08-11 15:03:36 +00:00
|
|
|
"timeout": 12000,
|
|
|
|
"_": "tests/**/*.spec.ts"
|
|
|
|
},
|
2019-04-02 11:26:21 +00:00
|
|
|
"oclif": {
|
|
|
|
"bin": "balena",
|
|
|
|
"commands": "./build/actions-oclif",
|
2020-09-04 14:34:34 +00:00
|
|
|
"helpClass": "./build/help",
|
2019-08-28 01:14:19 +00:00
|
|
|
"hooks": {
|
|
|
|
"prerun": "./build/hooks/prerun/track"
|
|
|
|
},
|
2019-04-02 11:26:21 +00:00
|
|
|
"macos": {
|
2019-06-18 23:59:56 +00:00
|
|
|
"identifier": "io.balena.cli",
|
|
|
|
"sign": "Developer ID Installer: Rulemotion Ltd (66H43P8FRG)"
|
2020-09-04 14:34:34 +00:00
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
"@oclif/plugin-help"
|
|
|
|
]
|
2019-04-02 11:26:21 +00:00
|
|
|
},
|
2014-10-31 13:37:29 +00:00
|
|
|
"devDependencies": {
|
2020-08-27 10:50:57 +00:00
|
|
|
"@balena/lint": "^5.2.0",
|
2020-08-13 07:56:32 +00:00
|
|
|
"@oclif/config": "^1.17.0",
|
|
|
|
"@oclif/dev-cli": "^1.22.2",
|
|
|
|
"@oclif/parser": "^3.8.5",
|
2020-06-30 19:54:35 +00:00
|
|
|
"@octokit/plugin-throttling": "^3.3.0",
|
2020-08-13 07:56:32 +00:00
|
|
|
"@octokit/rest": "^16.43.2",
|
2020-02-21 00:31:53 +00:00
|
|
|
"@types/archiver": "^2.1.3",
|
2020-08-13 07:56:32 +00:00
|
|
|
"@types/bluebird": "^3.5.32",
|
2020-02-21 00:31:53 +00:00
|
|
|
"@types/body-parser": "^1.19.0",
|
2020-08-13 07:56:32 +00:00
|
|
|
"@types/chai": "^4.2.12",
|
|
|
|
"@types/chai-as-promised": "^7.1.3",
|
2020-04-25 11:00:36 +00:00
|
|
|
"@types/cli-truncate": "^1.1.0",
|
2020-01-24 22:20:39 +00:00
|
|
|
"@types/common-tags": "^1.8.0",
|
2020-08-07 17:27:31 +00:00
|
|
|
"@types/dockerode": "^2.5.34",
|
2020-08-13 07:56:32 +00:00
|
|
|
"@types/ejs": "^3.0.4",
|
|
|
|
"@types/express": "^4.17.7",
|
|
|
|
"@types/fs-extra": "^8.1.1",
|
2020-03-02 13:28:29 +00:00
|
|
|
"@types/global-agent": "^2.1.0",
|
|
|
|
"@types/global-tunnel-ng": "^2.1.0",
|
2020-06-15 22:53:04 +00:00
|
|
|
"@types/http-proxy": "^1.17.4",
|
2019-09-30 14:08:28 +00:00
|
|
|
"@types/intercept-stdout": "^0.1.0",
|
2020-02-21 00:31:53 +00:00
|
|
|
"@types/is-root": "^2.1.2",
|
2020-08-13 07:56:32 +00:00
|
|
|
"@types/js-yaml": "^3.12.5",
|
2020-08-10 13:30:01 +00:00
|
|
|
"@types/jsonwebtoken": "^8.5.0",
|
2020-04-25 11:00:36 +00:00
|
|
|
"@types/klaw": "^3.0.1",
|
2020-07-31 15:25:48 +00:00
|
|
|
"@types/lodash": "^4.14.159",
|
2020-02-21 00:31:53 +00:00
|
|
|
"@types/mixpanel": "^2.14.2",
|
2019-08-07 11:31:03 +00:00
|
|
|
"@types/mocha": "^5.2.7",
|
2020-03-06 21:19:24 +00:00
|
|
|
"@types/mock-require": "^2.0.0",
|
2020-04-23 12:40:26 +00:00
|
|
|
"@types/moment-duration-format": "^2.2.2",
|
2020-08-13 07:56:32 +00:00
|
|
|
"@types/net-keepalive": "^0.4.1",
|
2019-12-05 08:55:17 +00:00
|
|
|
"@types/nock": "^11.0.7",
|
2020-08-13 07:56:32 +00:00
|
|
|
"@types/node": "^10.17.28",
|
2020-04-25 11:00:36 +00:00
|
|
|
"@types/node-cleanup": "^2.1.1",
|
2020-06-30 19:54:35 +00:00
|
|
|
"@types/parse-link-header": "^1.0.0",
|
2020-02-21 00:31:53 +00:00
|
|
|
"@types/prettyjson": "0.0.29",
|
2020-04-27 13:10:03 +00:00
|
|
|
"@types/progress-stream": "^2.0.0",
|
2020-08-13 07:56:32 +00:00
|
|
|
"@types/request": "^2.48.5",
|
2019-08-07 11:31:03 +00:00
|
|
|
"@types/rewire": "^2.5.28",
|
2020-08-04 15:24:02 +00:00
|
|
|
"@types/rimraf": "^3.0.0",
|
2019-05-23 00:44:08 +00:00
|
|
|
"@types/shell-escape": "^0.2.0",
|
2020-08-13 07:56:32 +00:00
|
|
|
"@types/sinon": "^9.0.4",
|
2020-04-25 11:00:36 +00:00
|
|
|
"@types/split": "^1.0.0",
|
2019-05-10 14:38:12 +00:00
|
|
|
"@types/stream-to-promise": "2.2.0",
|
2020-03-02 17:13:16 +00:00
|
|
|
"@types/tar-stream": "^2.1.0",
|
2020-08-13 07:56:32 +00:00
|
|
|
"@types/through2": "^2.0.36",
|
2020-08-04 15:24:02 +00:00
|
|
|
"@types/tmp": "^0.2.0",
|
2020-01-09 00:13:32 +00:00
|
|
|
"@types/which": "^1.3.2",
|
2020-08-13 16:01:19 +00:00
|
|
|
"archiver": "^3.1.1",
|
2020-08-13 07:56:32 +00:00
|
|
|
"catch-uncommitted": "^1.6.2",
|
2019-08-07 11:31:03 +00:00
|
|
|
"chai": "^4.2.0",
|
|
|
|
"chai-as-promised": "^7.1.1",
|
2020-06-15 22:53:04 +00:00
|
|
|
"cross-env": "^7.0.2",
|
2020-06-16 23:38:03 +00:00
|
|
|
"deep-object-diff": "^1.1.0",
|
2020-08-06 00:08:18 +00:00
|
|
|
"diff": "^4.0.2",
|
2015-03-16 12:51:26 +00:00
|
|
|
"ent": "^2.2.0",
|
2020-02-29 21:52:09 +00:00
|
|
|
"filehound": "^1.17.4",
|
2019-05-23 00:44:08 +00:00
|
|
|
"fs-extra": "^8.0.1",
|
2019-05-02 09:26:53 +00:00
|
|
|
"gulp": "^4.0.1",
|
2017-11-23 12:49:47 +00:00
|
|
|
"gulp-inline-source": "^2.1.0",
|
2020-06-15 22:53:04 +00:00
|
|
|
"http-proxy": "^1.18.1",
|
2020-04-21 14:42:56 +00:00
|
|
|
"husky": "^4.2.5",
|
2019-09-06 13:43:53 +00:00
|
|
|
"intercept-stdout": "^0.1.2",
|
2020-08-10 13:30:01 +00:00
|
|
|
"jsonwebtoken": "^8.5.1",
|
2020-08-13 07:56:32 +00:00
|
|
|
"mkdirp": "^0.5.5",
|
2020-04-21 14:42:56 +00:00
|
|
|
"mocha": "^6.2.3",
|
2020-03-06 21:19:24 +00:00
|
|
|
"mock-require": "^3.0.3",
|
2020-05-21 13:51:10 +00:00
|
|
|
"nock": "^12.0.3",
|
2019-08-23 03:02:59 +00:00
|
|
|
"parse-link-header": "~1.0.1",
|
2020-08-27 10:50:57 +00:00
|
|
|
"pkg": "^4.4.9",
|
2020-01-24 22:20:39 +00:00
|
|
|
"publish-release": "^1.6.1",
|
2020-03-06 21:19:24 +00:00
|
|
|
"rewire": "^4.0.1",
|
2020-08-13 07:56:32 +00:00
|
|
|
"simple-git": "^1.132.0",
|
|
|
|
"sinon": "^9.0.3",
|
|
|
|
"ts-node": "^8.10.2",
|
2020-08-27 10:50:57 +00:00
|
|
|
"typescript": "^4.0.2"
|
2014-10-31 15:59:23 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-05-01 11:18:11 +00:00
|
|
|
"@balena/dockerignore": "^1.0.2",
|
2020-06-01 12:29:28 +00:00
|
|
|
"@balena/es-version": "^1.0.0",
|
2020-08-13 07:56:32 +00:00
|
|
|
"@oclif/command": "^1.8.0",
|
2017-05-18 22:25:01 +00:00
|
|
|
"@resin.io/valid-email": "^0.1.0",
|
2020-08-13 07:56:32 +00:00
|
|
|
"@sentry/node": "^5.21.1",
|
|
|
|
"@types/update-notifier": "^4.1.1",
|
2018-10-20 12:54:33 +00:00
|
|
|
"@zeit/dockerignore": "0.0.3",
|
2018-07-11 18:56:13 +00:00
|
|
|
"JSONStream": "^1.0.3",
|
2020-07-31 15:25:48 +00:00
|
|
|
"balena-config-json": "^4.1.0",
|
2020-03-02 17:13:16 +00:00
|
|
|
"balena-device-init": "^5.0.2",
|
2020-07-31 15:25:48 +00:00
|
|
|
"balena-errors": "^4.4.1",
|
|
|
|
"balena-image-manager": "^7.0.3",
|
2020-08-25 13:42:50 +00:00
|
|
|
"balena-preload": "^10.3.1",
|
2020-08-04 13:17:51 +00:00
|
|
|
"balena-release": "^3.0.0",
|
2020-09-03 15:09:31 +00:00
|
|
|
"balena-sdk": "^15.6.0",
|
2020-07-31 15:25:48 +00:00
|
|
|
"balena-semver": "^2.3.0",
|
2020-04-21 14:42:56 +00:00
|
|
|
"balena-settings-client": "^4.0.5",
|
2020-07-31 15:25:48 +00:00
|
|
|
"balena-settings-storage": "^6.0.1",
|
|
|
|
"balena-sync": "^11.0.2",
|
2020-01-24 22:20:39 +00:00
|
|
|
"bluebird": "^3.7.2",
|
2019-05-10 14:38:12 +00:00
|
|
|
"body-parser": "^1.19.0",
|
2020-03-02 17:13:16 +00:00
|
|
|
"chalk": "^3.0.0",
|
2020-08-07 17:27:31 +00:00
|
|
|
"chokidar": "^3.3.1",
|
2020-08-13 16:01:19 +00:00
|
|
|
"cli-truncate": "^2.1.0",
|
2018-10-16 10:25:37 +00:00
|
|
|
"color-hash": "^1.0.3",
|
2015-08-13 12:11:58 +00:00
|
|
|
"columnify": "^1.5.2",
|
2018-04-11 17:31:03 +00:00
|
|
|
"common-tags": "^1.7.2",
|
2019-05-23 00:29:54 +00:00
|
|
|
"denymount": "^2.3.0",
|
2020-08-13 07:56:32 +00:00
|
|
|
"docker-modem": "^2.1.4",
|
2020-03-02 17:13:16 +00:00
|
|
|
"docker-progress": "^4.0.1",
|
2020-04-23 12:46:19 +00:00
|
|
|
"docker-qemu-transpose": "^1.1.1",
|
2020-03-02 17:13:16 +00:00
|
|
|
"docker-toolbelt": "^3.3.8",
|
2019-07-09 14:43:36 +00:00
|
|
|
"dockerode": "^2.5.8",
|
2020-08-13 07:56:32 +00:00
|
|
|
"ejs": "^3.1.3",
|
2020-03-02 17:13:16 +00:00
|
|
|
"etcher-sdk": "^2.0.20",
|
2018-11-28 18:15:12 +00:00
|
|
|
"event-stream": "3.3.4",
|
2017-11-23 12:49:47 +00:00
|
|
|
"express": "^4.13.3",
|
2020-06-24 14:20:20 +00:00
|
|
|
"fast-boot2": "^1.1.0",
|
2020-08-13 16:01:19 +00:00
|
|
|
"get-stdin": "^8.0.0",
|
2020-06-15 22:53:02 +00:00
|
|
|
"global-agent": "^2.1.12",
|
2018-02-05 15:55:26 +00:00
|
|
|
"global-tunnel-ng": "^2.1.1",
|
2017-12-11 22:37:56 +00:00
|
|
|
"humanize": "0.0.9",
|
2020-08-13 07:56:32 +00:00
|
|
|
"ignore": "^5.1.8",
|
|
|
|
"inquirer": "^7.3.3",
|
2019-10-13 23:52:43 +00:00
|
|
|
"is-elevated": "^3.0.0",
|
|
|
|
"is-root": "^2.1.0",
|
2020-08-13 07:56:32 +00:00
|
|
|
"js-yaml": "^3.14.0",
|
2018-08-01 14:43:06 +00:00
|
|
|
"klaw": "^3.0.0",
|
2020-08-07 17:27:31 +00:00
|
|
|
"livepush": "^3.5.0",
|
2020-08-13 16:01:19 +00:00
|
|
|
"lodash": "^4.17.20",
|
2018-08-15 12:13:06 +00:00
|
|
|
"minimatch": "^3.0.4",
|
2020-01-24 22:20:39 +00:00
|
|
|
"mixpanel": "^0.10.3",
|
2020-08-13 07:56:32 +00:00
|
|
|
"moment": "^2.27.0",
|
2020-01-24 22:20:39 +00:00
|
|
|
"moment-duration-format": "^2.3.2",
|
2017-10-06 09:05:24 +00:00
|
|
|
"node-cleanup": "^2.1.2",
|
2020-01-24 22:20:39 +00:00
|
|
|
"node-unzip-2": "^0.2.8",
|
2020-08-13 07:56:32 +00:00
|
|
|
"oclif": "^1.16.1",
|
|
|
|
"open": "^7.1.0",
|
2020-04-20 21:48:03 +00:00
|
|
|
"patch-package": "6.2.2",
|
2015-11-10 16:53:34 +00:00
|
|
|
"prettyjson": "^1.1.3",
|
2017-06-13 17:28:37 +00:00
|
|
|
"progress-stream": "^2.0.0",
|
2018-07-19 17:05:15 +00:00
|
|
|
"reconfix": "^0.1.0",
|
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",
|
|
|
|
"resin-cli-visuals": "^1.7.0",
|
2020-08-13 07:56:32 +00:00
|
|
|
"resin-compose-parse": "^2.1.2",
|
2020-01-24 22:20:39 +00:00
|
|
|
"resin-doodles": "^0.1.1",
|
2020-03-02 17:13:16 +00:00
|
|
|
"resin-image-fs": "^5.0.9",
|
2020-08-13 07:56:32 +00:00
|
|
|
"resin-multibuild": "^4.7.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 07:56:32 +00:00
|
|
|
"semver": "^7.3.2",
|
2019-10-13 23:52:43 +00:00
|
|
|
"shell-escape": "^0.2.0",
|
2018-03-15 13:16:33 +00: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 13:16:33 +00:00
|
|
|
"strip-ansi-stream": "^1.0.0",
|
2020-08-13 07:56:32 +00:00
|
|
|
"tar-stream": "^2.1.3",
|
2020-08-13 22:05:11 +00:00
|
|
|
"tar-utils": "^2.1.1",
|
2017-12-11 22:37:56 +00:00
|
|
|
"through2": "^2.0.3",
|
2020-08-04 15:24:02 +00:00
|
|
|
"tmp": "^0.2.1",
|
2020-07-31 15:25:48 +00:00
|
|
|
"typed-error": "^3.2.1",
|
2017-06-08 10:52:47 +00:00
|
|
|
"umount": "^1.1.6",
|
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-11 22:37:56 +00:00
|
|
|
"window-size": "^1.1.0"
|
2017-03-28 09:09:58 +00:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2020-08-13 07:56:32 +00:00
|
|
|
"net-keepalive": "^1.3.6",
|
2019-10-13 23:52:43 +00:00
|
|
|
"windosu": "^0.3.0"
|
2014-10-31 13:37:29 +00:00
|
|
|
}
|
2018-02-20 17:12:45 +00:00
|
|
|
}
|