2014-10-31 09:37:29 -04:00
|
|
|
{
|
2018-10-19 16:38:50 +02:00
|
|
|
"name": "balena-cli",
|
2019-06-27 15:06:08 +03:00
|
|
|
"version": "11.3.6",
|
2018-10-19 16:38:50 +02:00
|
|
|
"description": "The official balena CLI tool",
|
2015-05-18 09:35:10 -04:00
|
|
|
"main": "./build/actions/index.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": [
|
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/",
|
|
|
|
"lib/"
|
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": [
|
2018-10-19 16:38:50 +02:00
|
|
|
"node_modules/balena-sync/build/capitano/*.js",
|
|
|
|
"node_modules/balena-sync/build/sync/*.js",
|
2018-11-13 18:43:00 +01:00
|
|
|
"node_modules/resin-compose-parse/build/schemas/*.json",
|
2018-04-16 12:23:31 +02:00
|
|
|
"node_modules/raven/lib/instrumentation/*.js"
|
2017-12-12 18:02:37 +01:00
|
|
|
],
|
|
|
|
"assets": [
|
2019-06-24 16:51:07 +01:00
|
|
|
"build/actions-oclif",
|
2017-12-14 13:29:44 +01:00
|
|
|
"build/auth/pages/*.ejs",
|
|
|
|
"node_modules/resin-discoverable-services/services/**/*"
|
2017-12-12 18:02:37 +01:00
|
|
|
]
|
|
|
|
},
|
2014-10-31 09:37:29 -04:00
|
|
|
"scripts": {
|
2019-05-23 01:44:08 +01:00
|
|
|
"postinstall": "patch-package",
|
|
|
|
"prebuild": "rimraf build/ build-bin/",
|
|
|
|
"build": "npm run build:src",
|
2018-04-04 15:14:54 +01:00
|
|
|
"build:src": "npm run prettify && npm run lint && npm run build:fast && npm run build:doc",
|
|
|
|
"build:fast": "gulp build && tsc",
|
2019-04-25 18:39:16 +01:00
|
|
|
"build:doc": "mkdirp doc/ && ts-node --type-check -P automation/tsconfig.json automation/capitanodoc/index.ts > doc/cli.markdown",
|
2019-05-23 01:44:08 +01:00
|
|
|
"build:standalone": "ts-node --type-check -P automation/tsconfig.json automation/run.ts build:standalone",
|
|
|
|
"build:installer": "ts-node --type-check -P automation/tsconfig.json automation/run.ts build:installer",
|
|
|
|
"release": "ts-node --type-check -P automation/tsconfig.json automation/run.ts release",
|
2017-11-23 13:49:47 +01:00
|
|
|
"pretest": "npm run build",
|
|
|
|
"test": "gulp test",
|
2018-08-20 17:13:16 +01:00
|
|
|
"test:fast": "npm run build:fast && gulp test",
|
2019-04-18 14:50:49 +01:00
|
|
|
"ci": "npm run test && catch-uncommitted",
|
2017-03-21 12:06:05 +03:00
|
|
|
"watch": "gulp watch",
|
2018-10-16 11:25:37 +01:00
|
|
|
"prettify": "prettier --write \"{lib,tests,automation,typings}/**/*.ts\" --config ./node_modules/resin-lint/config/.prettierrc",
|
2018-01-09 16:00:45 +01:00
|
|
|
"lint": "resin-lint lib/ tests/ && resin-lint --typescript automation/ lib/ typings/ tests/",
|
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"
|
|
|
|
],
|
2018-10-19 16:38:50 +02:00
|
|
|
"author": "Juan Cruz Viotti <juan@balena.io>",
|
2016-01-03 23:58:51 -04:00
|
|
|
"license": "Apache-2.0",
|
2017-06-22 18:58:09 +02:00
|
|
|
"engines": {
|
2019-04-25 18:39:16 +01:00
|
|
|
"node": ">=8.0"
|
2017-06-22 18:58:09 +02:00
|
|
|
},
|
2019-04-02 12:26:21 +01:00
|
|
|
"oclif": {
|
|
|
|
"bin": "balena",
|
|
|
|
"commands": "./build/actions-oclif",
|
|
|
|
"macos": {
|
|
|
|
"identifier": "io.balena.cli"
|
|
|
|
}
|
|
|
|
},
|
2014-10-31 09:37:29 -04:00
|
|
|
"devDependencies": {
|
2019-04-02 12:26:21 +01:00
|
|
|
"@oclif/config": "^1.12.12",
|
2019-05-23 01:44:08 +01:00
|
|
|
"@oclif/dev-cli": "1.22.0",
|
2019-04-02 12:26:21 +01:00
|
|
|
"@oclif/parser": "^3.7.3",
|
2018-07-17 15:57:02 +02:00
|
|
|
"@types/archiver": "2.1.2",
|
2019-02-22 15:26:43 +00:00
|
|
|
"@types/bluebird": "3.5.21",
|
2019-01-14 16:51:57 +00:00
|
|
|
"@types/chokidar": "^1.7.5",
|
2018-07-17 15:57:02 +02:00
|
|
|
"@types/common-tags": "1.4.0",
|
2019-03-12 22:07:57 +00:00
|
|
|
"@types/dockerode": "2.5.5",
|
2019-05-23 01:44:08 +01:00
|
|
|
"@types/fs-extra": "7.0.0",
|
2018-07-17 15:57:02 +02:00
|
|
|
"@types/is-root": "1.0.0",
|
2019-03-12 22:07:57 +00:00
|
|
|
"@types/lodash": "4.14.112",
|
2019-04-11 12:49:19 +01:00
|
|
|
"@types/mixpanel": "2.14.0",
|
2018-07-17 15:57:02 +02:00
|
|
|
"@types/mkdirp": "0.5.2",
|
2019-05-30 12:57:03 +01:00
|
|
|
"@types/mz": "0.0.32",
|
2019-05-13 11:51:41 +01:00
|
|
|
"@types/net-keepalive": "^0.4.0",
|
2019-04-25 18:39:16 +01:00
|
|
|
"@types/node": "10.14.5",
|
2017-12-20 22:46:01 +01:00
|
|
|
"@types/prettyjson": "0.0.28",
|
2018-07-17 15:57:02 +02:00
|
|
|
"@types/raven": "2.5.1",
|
2019-04-11 12:49:19 +01:00
|
|
|
"@types/request": "2.48.1",
|
2019-05-23 01:44:08 +01:00
|
|
|
"@types/rimraf": "^2.0.2",
|
|
|
|
"@types/shell-escape": "^0.2.0",
|
2019-05-10 15:38:12 +01:00
|
|
|
"@types/stream-to-promise": "2.2.0",
|
2019-03-12 22:07:57 +00:00
|
|
|
"@types/tar-stream": "1.6.0",
|
2019-04-11 12:49:19 +01:00
|
|
|
"@types/through2": "2.0.33",
|
2019-05-10 15:38:12 +01:00
|
|
|
"catch-uncommitted": "^1.3.0",
|
2015-03-16 08:51:26 -04:00
|
|
|
"ent": "^2.2.0",
|
2019-05-10 15:38:12 +01:00
|
|
|
"filehound": "^1.17.0",
|
2019-05-23 01:44:08 +01:00
|
|
|
"fs-extra": "^8.0.1",
|
2019-05-02 10:26:53 +01:00
|
|
|
"gulp": "^4.0.1",
|
2014-12-30 09:44:03 -04:00
|
|
|
"gulp-coffee": "^2.2.0",
|
2017-11-23 13:49:47 +01:00
|
|
|
"gulp-inline-source": "^2.1.0",
|
|
|
|
"gulp-mocha": "^2.0.0",
|
2017-08-18 15:56:35 +02:00
|
|
|
"gulp-shell": "^0.5.2",
|
2017-11-23 13:49:47 +01:00
|
|
|
"mochainon": "^2.0.0",
|
2019-06-26 17:07:55 +01:00
|
|
|
"pkg": "4.4.0",
|
2019-06-10 11:07:51 +01:00
|
|
|
"prettier": "1.17.0",
|
2019-05-23 01:44:08 +01:00
|
|
|
"publish-release": "^1.6.0",
|
2019-03-12 22:07:57 +00:00
|
|
|
"resin-lint": "^3.0.1",
|
2018-03-28 17:48:20 +02:00
|
|
|
"rewire": "^3.0.2",
|
2019-05-23 01:44:08 +01:00
|
|
|
"shell-escape": "^0.2.0",
|
2019-04-25 18:39:16 +01:00
|
|
|
"ts-node": "^8.1.0",
|
|
|
|
"typescript": "3.4.3"
|
2014-10-31 11:59:23 -04:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-04-02 12:26:21 +01:00
|
|
|
"@oclif/command": "^1.5.12",
|
|
|
|
"@oclif/errors": "^1.2.2",
|
2017-05-19 01:25:01 +03:00
|
|
|
"@resin.io/valid-email": "^0.1.0",
|
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",
|
2017-04-24 13:48:43 +01:00
|
|
|
"ansi-escapes": "^2.0.0",
|
2017-03-29 12:03:40 +01:00
|
|
|
"any-promise": "^1.3.0",
|
2017-12-13 18:33:03 +01:00
|
|
|
"archiver": "^2.1.0",
|
2018-10-19 16:38:50 +02:00
|
|
|
"balena-config-json": "^2.0.0",
|
2018-11-05 10:18:18 +02:00
|
|
|
"balena-device-init": "^5.0.0",
|
2019-06-11 15:08:15 +03:00
|
|
|
"balena-device-status": "^3.1.2",
|
2018-10-19 16:38:50 +02:00
|
|
|
"balena-image-manager": "^6.0.0",
|
2019-05-28 16:35:29 +02:00
|
|
|
"balena-preload": "^8.2.0",
|
2019-06-11 15:08:15 +03:00
|
|
|
"balena-sdk": "^11.18.0",
|
2018-10-19 16:38:50 +02:00
|
|
|
"balena-settings-client": "^4.0.0",
|
2019-04-02 18:01:28 +01:00
|
|
|
"balena-sync": "^10.0.3",
|
2017-05-19 01:25:01 +03:00
|
|
|
"bash": "0.0.1",
|
2019-05-10 15:38:12 +01:00
|
|
|
"bluebird": "^3.5.4",
|
|
|
|
"body-parser": "^1.19.0",
|
2019-02-22 15:26:43 +00:00
|
|
|
"capitano": "^1.9.0",
|
2017-12-20 22:46:01 +01:00
|
|
|
"chalk": "^2.3.0",
|
2019-01-14 16:51:57 +00:00
|
|
|
"chokidar": "^2.0.4",
|
2017-12-12 00:37:56 +02:00
|
|
|
"cli-truncate": "^1.1.0",
|
2018-02-07 11:20:49 +01:00
|
|
|
"coffeescript": "^1.12.6",
|
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",
|
2019-03-20 23:56:59 +00:00
|
|
|
"docker-progress": "^4.0.0",
|
2018-11-26 18:16:22 +00:00
|
|
|
"docker-qemu-transpose": "^0.5.3",
|
2019-03-12 22:07:57 +00:00
|
|
|
"docker-toolbelt": "^3.3.7",
|
2018-04-16 16:43:17 +02:00
|
|
|
"dockerode": "^2.5.5",
|
2017-08-23 14:14:46 +02:00
|
|
|
"dockerode-options": "^0.2.1",
|
2017-11-23 13:49:47 +01:00
|
|
|
"ejs": "^2.5.7",
|
2019-05-02 10:00:04 +01:00
|
|
|
"etcher-sdk": "^2.0.5",
|
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",
|
2019-01-11 16:34:29 +01:00
|
|
|
"fast-boot2": "^1.0.9",
|
2018-02-05 15:55:26 +00:00
|
|
|
"global-tunnel-ng": "^2.1.1",
|
2017-05-19 02:10:14 +03:00
|
|
|
"hasbin": "^1.2.3",
|
2017-12-12 00:37:56 +02:00
|
|
|
"humanize": "0.0.9",
|
2019-05-10 15:38:12 +01:00
|
|
|
"ignore": "^5.1.1",
|
2017-06-19 01:14:08 +03:00
|
|
|
"inquirer": "^3.1.1",
|
2015-08-20 16:54:22 -04:00
|
|
|
"is-root": "^1.0.0",
|
2019-05-10 15:38:12 +01:00
|
|
|
"js-yaml": "^3.13.1",
|
2018-08-01 16:43:06 +02:00
|
|
|
"klaw": "^3.0.0",
|
2019-06-07 15:59:27 +01:00
|
|
|
"livepush": "^2.0.0",
|
2017-08-16 18:16:21 +02:00
|
|
|
"lodash": "^4.17.4",
|
2018-08-15 13:13:06 +01:00
|
|
|
"minimatch": "^3.0.4",
|
2019-02-07 15:36:48 +00:00
|
|
|
"mixpanel": "^0.10.1",
|
2017-12-14 11:57:27 +01:00
|
|
|
"mkdirp": "^0.5.1",
|
2019-05-10 15:38:12 +01:00
|
|
|
"moment": "^2.24.0",
|
2019-06-04 02:47:45 +01:00
|
|
|
"moment-duration-format": "~2.2.2",
|
2019-05-23 01:44:08 +01:00
|
|
|
"mz": "^2.7.0",
|
2017-10-06 11:05:24 +02:00
|
|
|
"node-cleanup": "^2.1.2",
|
2019-04-02 12:26:21 +01:00
|
|
|
"oclif": "^1.13.1",
|
2019-05-10 15:38:12 +01:00
|
|
|
"opn": "^5.5.0",
|
2019-06-05 13:12:10 +01:00
|
|
|
"patch-package": "^6.1.2",
|
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",
|
2018-04-16 12:22:28 +02:00
|
|
|
"raven": "^2.5.0",
|
2018-07-19 19:05:15 +02:00
|
|
|
"reconfix": "^0.1.0",
|
2017-03-29 12:03:40 +01:00
|
|
|
"request": "^2.81.0",
|
2019-01-11 16:34:29 +01:00
|
|
|
"resin-cli-form": "^2.0.1",
|
2017-06-09 15:50:03 +03:00
|
|
|
"resin-cli-visuals": "^1.4.0",
|
2019-04-11 12:49:19 +01:00
|
|
|
"resin-compose-parse": "^2.1.0",
|
2017-04-28 13:44:40 +01:00
|
|
|
"resin-doodles": "0.0.1",
|
2019-05-10 15:38:12 +01:00
|
|
|
"resin-image-fs": "^5.0.8",
|
2019-04-23 15:16:47 +01:00
|
|
|
"resin-multibuild": "^3.1.0",
|
2018-03-19 20:58:05 +02:00
|
|
|
"resin-release": "^1.2.0",
|
2019-05-10 15:38:12 +01:00
|
|
|
"resin-semver": "^1.6.0",
|
2018-11-26 18:16:22 +00:00
|
|
|
"resin-stream-logger": "^0.1.2",
|
2015-08-20 15:54:42 -04:00
|
|
|
"rimraf": "^2.4.3",
|
2019-05-10 15:38:12 +01:00
|
|
|
"rindle": "^1.3.4",
|
|
|
|
"semver": "^5.7.0",
|
2018-03-15 15:16:33 +02:00
|
|
|
"split": "^1.0.1",
|
2017-12-12 00:37:56 +02:00
|
|
|
"string-width": "^2.1.1",
|
2018-03-15 15:16:33 +02:00
|
|
|
"strip-ansi-stream": "^1.0.0",
|
2019-02-07 15:10:16 +00:00
|
|
|
"tar-stream": "^1.6.2",
|
2019-04-23 15:16:47 +01:00
|
|
|
"tar-utils": "^2.0.0",
|
2017-12-12 00:37:56 +02:00
|
|
|
"through2": "^2.0.3",
|
2017-03-29 12:03:40 +01:00
|
|
|
"tmp": "0.0.31",
|
2019-05-10 15:38:12 +01:00
|
|
|
"typed-error": "^3.1.0",
|
2017-06-08 13:52:47 +03:00
|
|
|
"umount": "^1.1.6",
|
2015-09-30 10:16:24 -04:00
|
|
|
"unzip2": "^0.2.5",
|
2017-12-12 00:37:56 +02:00
|
|
|
"update-notifier": "^2.2.0",
|
|
|
|
"window-size": "^1.1.0"
|
2017-03-28 12:09:58 +03:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2019-05-13 11:51:41 +01:00
|
|
|
"net-keepalive": "^1.2.1",
|
2018-05-22 18:12:51 +03:00
|
|
|
"windosu": "^0.2.0"
|
2014-10-31 09:37:29 -04:00
|
|
|
}
|
2018-02-20 17:12:45 +00:00
|
|
|
}
|