balena-cli/package.json

259 lines
7.9 KiB
JSON
Raw Normal View History

2014-10-31 13:37:29 +00:00
{
"name": "balena-cli",
2020-04-24 23:19:34 +00:00
"version": "11.31.20",
"description": "The official balena CLI tool",
"main": "./build/app.js",
"homepage": "https://github.com/balena-io/balena-cli",
2014-12-09 19:46:47 +00:00
"repository": {
"type": "git",
"url": "git@github.com:balena-io/balena-cli.git"
2014-12-09 19:46:47 +00:00
},
"preferGlobal": true,
"files": [
"bin/",
"build/",
"doc/",
"lib/",
"patches0/",
"patches/",
"*.md",
"npm-shrinkwrap.json"
],
2014-11-27 13:10:51 +00:00
"bin": {
"balena": "./bin/balena"
2014-11-27 13:10:51 +00:00
},
"pkg": {
"scripts": [
"node_modules/balena-sync/build/capitano/*.js",
"node_modules/balena-sync/build/sync/*.js",
"node_modules/resin-compose-parse/build/schemas/*.json"
],
"assets": [
"build/**/*.js",
"build/actions-oclif",
"build/auth/pages/*.ejs",
"build/hooks",
"node_modules/resin-discoverable-services/services/**/*",
"node_modules/opn/xdg-open",
"node_modules/open/xdg-open",
"node_modules/windosu/*.bat",
"node_modules/windosu/*.cmd"
]
},
2014-10-31 13:37:29 +00:00
"scripts": {
"postinstall": "patch-package --patch-dir patches0 && patch-package",
"prebuild": "rimraf build/ build-bin/",
"build": "npm run build:src && npm run catch-uncommitted",
"build:src": "npm run lint && npm run build:fast && npm run build:test && npm run build:doc",
"build:fast": "gulp build && tsc",
"build:test": "tsc -P ./tsconfig.dev.json --noEmit && tsc -P ./tsconfig.js.json --noEmit",
"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",
"package": "npm run build:fast && npm run build:standalone && npm run build:installer",
"release": "ts-node --transpile-only automation/run.ts release",
"pretest": "npm run build",
"test": "mocha --timeout 6000 -r ts-node/register/transpile-only \"tests/**/*.spec.ts\"",
"test:fast": "npm run build:fast && mocha --timeout 6000 -r ts-node/register/transpile-only \"tests/**/*.spec.ts\"",
"catch-uncommitted": "ts-node --transpile-only automation/run.ts catch-uncommitted",
"ci": "npm run test && npm run catch-uncommitted",
"watch": "gulp watch",
"lint": "balena-lint lib/ tests/ && balena-lint -e ts -e js --typescript --fix automation/ lib/ typings/ tests/",
"update": "ts-node --transpile-only ./automation/update-module.ts",
"prepublishOnly": "npm run build"
2014-10-31 13:37:29 +00:00
},
"keywords": [
"balena",
"balena.io",
"balenaCloud",
"balenaOS",
2014-10-31 13:37:29 +00:00
"resin",
"resin.io",
2014-10-31 13:37:29 +00:00
"git"
],
"author": "Juan Cruz Viotti <juan@balena.io>",
2016-01-04 03:58:51 +00:00
"license": "Apache-2.0",
"engines": {
"node": ">=8.0"
},
"husky": {
"hooks": {
"pre-commit": "node automation/check-npm-version.js && node automation/check-doc.js"
}
},
"oclif": {
"bin": "balena",
"commands": "./build/actions-oclif",
"hooks": {
"prerun": "./build/hooks/prerun/track"
},
"macos": {
"identifier": "io.balena.cli",
"sign": "Developer ID Installer: Rulemotion Ltd (66H43P8FRG)"
}
},
2014-10-31 13:37:29 +00:00
"devDependencies": {
"@balena/lint": "^4.1.1",
"@oclif/config": "^1.14.0",
"@oclif/dev-cli": "1.22.0",
2020-01-24 22:20:39 +00:00
"@oclif/parser": "^3.8.4",
"@octokit/plugin-throttling": "^2.7.1",
"@octokit/rest": "^16.43.1",
2020-02-21 00:31:53 +00:00
"@types/archiver": "^2.1.3",
"@types/bluebird": "^3.5.30",
2020-02-21 00:31:53 +00:00
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.1",
2020-02-21 00:31:53 +00:00
"@types/chokidar": "^2.1.3",
2020-01-24 22:20:39 +00:00
"@types/common-tags": "^1.8.0",
"@types/dockerode": "^2.5.27",
"@types/ejs": "^3.0.2",
"@types/express": "^4.17.3",
2020-02-21 00:31:53 +00:00
"@types/fs-extra": "^8.1.0",
"@types/global-agent": "^2.1.0",
"@types/global-tunnel-ng": "^2.1.0",
"@types/intercept-stdout": "^0.1.0",
2020-02-21 00:31:53 +00:00
"@types/is-root": "^2.1.2",
"@types/lodash": "^4.14.150",
2020-02-21 00:31:53 +00:00
"@types/mixpanel": "^2.14.2",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.7",
"@types/mock-require": "^2.0.0",
"@types/moment-duration-format": "^2.2.2",
2020-02-21 00:31:53 +00:00
"@types/mz": "^2.7.0",
"@types/net-keepalive": "^0.4.0",
"@types/nock": "^11.0.7",
"@types/node": "^10.17.20",
2020-02-21 00:31:53 +00:00
"@types/prettyjson": "0.0.29",
"@types/request": "^2.48.4",
"@types/rewire": "^2.5.28",
"@types/rimraf": "^2.0.4",
"@types/shell-escape": "^0.2.0",
"@types/sinon": "^7.5.2",
"@types/stream-to-promise": "2.2.0",
"@types/tar-stream": "^2.1.0",
2020-02-21 00:31:53 +00:00
"@types/through2": "^2.0.34",
"@types/which": "^1.3.2",
"catch-uncommitted": "^1.5.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"ent": "^2.2.0",
"filehound": "^1.17.4",
"fs-extra": "^8.0.1",
"gulp": "^4.0.1",
2014-12-30 13:44:03 +00:00
"gulp-coffee": "^2.2.0",
"gulp-inline-source": "^2.1.0",
"gulp-shell": "^0.5.2",
"husky": "^4.2.5",
"intercept-stdout": "^0.1.2",
"mocha": "^6.2.3",
"mock-require": "^3.0.3",
"nock": "^11.9.1",
"parse-link-header": "~1.0.1",
2020-01-24 22:20:39 +00:00
"pkg": "^4.4.2",
"publish-release": "^1.6.1",
"rewire": "^4.0.1",
"simple-git": "^1.131.0",
2020-01-24 22:20:39 +00:00
"sinon": "^7.5.0",
"ts-node": "^8.9.0",
"typescript": "^3.8.3"
2014-10-31 15:59:23 +00:00
},
"dependencies": {
2020-01-24 22:20:39 +00:00
"@oclif/command": "^1.5.19",
2017-05-18 22:25:01 +00:00
"@resin.io/valid-email": "^0.1.0",
"@sentry/node": "^5.13.2",
"@types/update-notifier": "^4.1.0",
"@zeit/dockerignore": "0.0.3",
"JSONStream": "^1.0.3",
"any-promise": "^1.3.0",
"archiver": "^3.1.1",
2020-01-24 22:20:39 +00:00
"balena-config-json": "^2.1.1",
"balena-device-init": "^5.0.2",
"balena-device-status": "^3.2.1",
"balena-errors": "^4.3.0",
"balena-image-manager": "^6.1.2",
"balena-preload": "^8.4.0",
"balena-release": "^2.1.0",
"balena-sdk": "^12.33.0",
"balena-semver": "^2.2.0",
"balena-settings-client": "^4.0.5",
"balena-sync": "^10.2.0",
2020-01-24 22:20:39 +00:00
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"capitano": "^1.9.2",
"chalk": "^3.0.0",
2020-01-24 22:20:39 +00:00
"chokidar": "^2.1.8",
"cli-truncate": "^1.1.0",
"coffeescript": "^1.12.6",
"color-hash": "^1.0.3",
"columnify": "^1.5.2",
"common-tags": "^1.7.2",
"denymount": "^2.3.0",
"docker-modem": "^2.1.1",
"docker-progress": "^4.0.1",
"docker-qemu-transpose": "^1.1.1",
"docker-toolbelt": "^3.3.8",
"dockerode": "^2.5.8",
2020-01-24 22:20:39 +00:00
"ejs": "^3.0.1",
"etcher-sdk": "^2.0.20",
"event-stream": "3.3.4",
"express": "^4.13.3",
"fast-boot2": "^1.0.9",
"get-stdin": "^7.0.0",
"global-agent": "^2.1.8",
"global-tunnel-ng": "^2.1.1",
"humanize": "0.0.9",
2020-01-24 22:20:39 +00:00
"ignore": "^5.1.4",
"inquirer": "^7.0.6",
"is-elevated": "^3.0.0",
"is-root": "^2.1.0",
"js-yaml": "^3.13.1",
"klaw": "^3.0.0",
"livepush": "^2.1.0",
2020-01-24 22:20:39 +00:00
"lodash": "^4.17.15",
"minimatch": "^3.0.4",
2020-01-24 22:20:39 +00:00
"mixpanel": "^0.10.3",
"mkdirp": "^0.5.1",
"moment": "^2.24.0",
2020-01-24 22:20:39 +00:00
"moment-duration-format": "^2.3.2",
"mz": "^2.7.0",
"node-cleanup": "^2.1.2",
2020-01-24 22:20:39 +00:00
"node-unzip-2": "^0.2.8",
"oclif": "^1.15.2",
"open": "^7.0.2",
"patch-package": "6.2.2",
"prettyjson": "^1.1.3",
"progress-stream": "^2.0.0",
"reconfix": "^0.1.0",
"request": "^2.88.2",
"resin-cli-form": "^2.0.2",
"resin-cli-visuals": "^1.7.0",
"resin-compose-parse": "^2.1.0",
2020-01-24 22:20:39 +00:00
"resin-doodles": "^0.1.1",
"resin-image-fs": "^5.0.9",
"resin-multibuild": "^4.4.2",
"resin-stream-logger": "^0.1.2",
"rimraf": "^3.0.2",
"rindle": "^1.3.6",
"semver": "^7.1.3",
"shell-escape": "^0.2.0",
"split": "^1.0.1",
"stream-to-promise": "^2.2.0",
"string-width": "^4.2.0",
"strip-ansi-stream": "^1.0.0",
"tar-stream": "^2.1.0",
"tar-utils": "^2.1.0",
"through2": "^2.0.3",
"tmp": "0.0.31",
2020-01-24 22:20:39 +00:00
"typed-error": "^3.2.0",
2017-06-08 10:52:47 +00:00
"umount": "^1.1.6",
"update-notifier": "^4.1.0",
"which": "^2.0.2",
"window-size": "^1.1.0"
},
"optionalDependencies": {
"net-keepalive": "^1.2.1",
"windosu": "^0.3.0"
2014-10-31 13:37:29 +00:00
}
2018-02-20 17:12:45 +00:00
}