2014-10-31 09:37:29 -04:00
|
|
|
{
|
2015-02-11 15:31:09 -04:00
|
|
|
"name": "resin-cli",
|
2018-01-09 14:03:45 +00:00
|
|
|
"version": "6.12.2",
|
2017-08-16 11:22:21 +02:00
|
|
|
"description": "The official resin.io CLI tool",
|
2015-05-18 09:35:10 -04:00
|
|
|
"main": "./build/actions/index.js",
|
2015-03-03 13:17:24 -04:00
|
|
|
"homepage": "https://github.com/resin-io/resin-cli",
|
2014-12-09 15:46:47 -04:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2015-03-03 13:17:24 -04:00
|
|
|
"url": "git@github.com:resin-io/resin-cli.git"
|
2014-12-09 15:46:47 -04:00
|
|
|
},
|
|
|
|
"preferGlobal": true,
|
2017-11-23 13:04:48 +01:00
|
|
|
"files": [
|
|
|
|
"bin/",
|
|
|
|
"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": {
|
|
|
|
"resin": "./bin/resin"
|
|
|
|
},
|
2017-12-12 18:02:37 +01:00
|
|
|
"pkg": {
|
|
|
|
"scripts": [
|
|
|
|
"node_modules/resin-sync/build/capitano/*.js",
|
|
|
|
"node_modules/resin-sync/build/sync/*.js"
|
|
|
|
],
|
|
|
|
"assets": [
|
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": {
|
2017-12-18 14:49:45 +01:00
|
|
|
"prebuild": "rimraf build/ build-bin/ build-zip/",
|
2017-12-12 18:02:37 +01:00
|
|
|
"build": "npm run build:src && npm run build:bin",
|
|
|
|
"build:src": "gulp build && tsc && npm run doc",
|
2017-12-14 12:29:54 +01:00
|
|
|
"build:bin": "ts-node --type-check -P automation automation/build-bin.ts",
|
|
|
|
"release": "npm run build && ts-node --type-check -P automation automation/deploy-bin.ts",
|
2017-11-23 13:49:47 +01:00
|
|
|
"pretest": "npm run build",
|
|
|
|
"test": "gulp test",
|
|
|
|
"ci": "npm run test && catch-uncommitted",
|
2017-12-14 11:57:27 +01:00
|
|
|
"doc": "mkdirp doc/ && coffee extras/capitanodoc/index.coffee > doc/cli.markdown",
|
2017-03-21 12:06:05 +03:00
|
|
|
"watch": "gulp watch",
|
|
|
|
"lint": "gulp lint",
|
2017-08-18 15:56:35 +02:00
|
|
|
"prepublish": "require-npm4-to-publish",
|
2017-09-14 15:59:31 +02:00
|
|
|
"prepublishOnly": "npm run build"
|
2014-10-31 09:37:29 -04:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"resin",
|
|
|
|
"git"
|
|
|
|
],
|
2015-09-21 09:15:27 -04:00
|
|
|
"author": "Juan Cruz Viotti <juan@resin.io>",
|
2016-01-03 23:58:51 -04:00
|
|
|
"license": "Apache-2.0",
|
2017-06-22 18:58:09 +02:00
|
|
|
"engines": {
|
|
|
|
"node": ">=6.0"
|
|
|
|
},
|
2014-10-31 09:37:29 -04:00
|
|
|
"devDependencies": {
|
2017-12-13 18:33:03 +01:00
|
|
|
"@types/archiver": "^2.0.1",
|
2017-12-13 15:08:36 +01:00
|
|
|
"@types/fs-extra": "^5.0.0",
|
2017-12-18 14:49:45 +01:00
|
|
|
"@types/mkdirp": "^0.5.2",
|
2017-09-14 15:59:31 +02:00
|
|
|
"catch-uncommitted": "^1.0.0",
|
2015-03-16 08:51:26 -04:00
|
|
|
"ent": "^2.2.0",
|
2017-12-13 15:08:36 +01:00
|
|
|
"filehound": "^1.16.2",
|
|
|
|
"fs-extra": "^5.0.0",
|
2015-07-15 09:01:50 -04:00
|
|
|
"gulp": "^3.9.0",
|
2014-12-30 09:44:03 -04:00
|
|
|
"gulp-coffee": "^2.2.0",
|
2016-03-07 08:44:10 -04:00
|
|
|
"gulp-coffeelint": "^0.6.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",
|
2017-12-12 18:02:37 +01:00
|
|
|
"pkg": "^4.3.0-beta.1",
|
2017-12-13 18:33:03 +01:00
|
|
|
"publish-release": "^1.3.3",
|
2017-11-23 12:53:28 +01:00
|
|
|
"require-npm4-to-publish": "^1.0.0",
|
2017-12-13 15:08:36 +01:00
|
|
|
"ts-node": "^4.0.1",
|
2017-11-27 11:25:20 +02:00
|
|
|
"typescript": "^2.6.1"
|
2014-10-31 11:59:23 -04:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2017-05-19 01:25:01 +03:00
|
|
|
"@resin.io/valid-email": "^0.1.0",
|
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",
|
2017-05-19 01:25:01 +03:00
|
|
|
"bash": "0.0.1",
|
2016-03-07 08:44:10 -04:00
|
|
|
"bluebird": "^3.3.3",
|
2017-11-23 13:49:47 +01:00
|
|
|
"body-parser": "^1.14.1",
|
2017-03-22 12:46:06 +03:00
|
|
|
"capitano": "^1.7.0",
|
2017-03-08 21:49:56 +00:00
|
|
|
"chalk": "^1.1.3",
|
2017-06-09 15:50:03 +03:00
|
|
|
"coffee-script": "^1.12.6",
|
2015-08-13 08:11:58 -04:00
|
|
|
"columnify": "^1.5.2",
|
2017-03-08 18:43:34 +00:00
|
|
|
"denymount": "^2.2.0",
|
2017-06-27 15:05:54 +02:00
|
|
|
"docker-qemu-transpose": "^0.2.2",
|
2017-03-08 18:45:36 +00:00
|
|
|
"docker-toolbelt": "^1.3.3",
|
2017-06-19 01:14:08 +03:00
|
|
|
"dockerode": "^2.5.0",
|
2017-08-23 14:14:46 +02:00
|
|
|
"dockerode-options": "^0.2.1",
|
2017-06-09 15:50:03 +03:00
|
|
|
"drivelist": "^5.0.22",
|
2017-11-23 13:49:47 +01:00
|
|
|
"ejs": "^2.5.7",
|
2017-04-14 12:41:55 +03:00
|
|
|
"etcher-image-write": "^9.0.3",
|
2017-11-23 13:49:47 +01:00
|
|
|
"express": "^4.13.3",
|
2017-08-11 16:52:21 +02:00
|
|
|
"global-tunnel-ng": "github:zvin/global-tunnel#dont-proxy-connections-to-file-sockets",
|
2017-05-19 02:10:14 +03:00
|
|
|
"hasbin": "^1.2.3",
|
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",
|
2017-03-29 12:03:40 +01:00
|
|
|
"js-yaml": "^3.7.0",
|
|
|
|
"klaw": "^1.3.1",
|
2017-08-16 18:16:21 +02:00
|
|
|
"lodash": "^4.17.4",
|
2016-02-12 14:34:16 -04:00
|
|
|
"mixpanel": "^0.4.0",
|
2017-12-14 11:57:27 +01:00
|
|
|
"mkdirp": "^0.5.1",
|
2016-03-07 08:44:10 -04:00
|
|
|
"moment": "^2.12.0",
|
2017-03-29 12:03:40 +01:00
|
|
|
"mz": "^2.6.0",
|
2017-10-06 11:05:24 +02:00
|
|
|
"node-cleanup": "^2.1.2",
|
2015-08-19 11:21:08 -04:00
|
|
|
"nplugm": "^3.0.0",
|
2017-12-12 17:29:15 +01:00
|
|
|
"opn": "^5.1.0",
|
2015-11-12 13:30:48 -04:00
|
|
|
"president": "^2.0.1",
|
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",
|
2017-03-17 18:37:07 +01:00
|
|
|
"raven": "^1.2.0",
|
2017-03-29 12:03:40 +01:00
|
|
|
"reconfix": "^0.0.3",
|
|
|
|
"request": "^2.81.0",
|
|
|
|
"resin-bundle-resolve": "^0.0.2",
|
2016-03-07 08:44:10 -04:00
|
|
|
"resin-cli-errors": "^1.2.0",
|
2017-03-08 21:49:56 +00:00
|
|
|
"resin-cli-form": "^1.4.1",
|
2017-06-09 15:50:03 +03:00
|
|
|
"resin-cli-visuals": "^1.4.0",
|
2015-11-11 10:04:46 -04:00
|
|
|
"resin-config-json": "^1.0.0",
|
2017-04-18 20:22:43 -07:00
|
|
|
"resin-device-config": "^4.0.0",
|
2017-10-13 20:23:19 +02:00
|
|
|
"resin-device-init": "^4.0.0",
|
2017-03-29 12:03:40 +01:00
|
|
|
"resin-docker-build": "^0.4.0",
|
2017-04-28 13:44:40 +01:00
|
|
|
"resin-doodles": "0.0.1",
|
2017-07-26 22:48:27 +03:00
|
|
|
"resin-image-fs": "^2.3.0",
|
2017-10-17 17:28:40 +02:00
|
|
|
"resin-image-manager": "^5.0.0",
|
2017-10-27 11:49:07 +02:00
|
|
|
"resin-preload": "^5.0.0",
|
2017-10-17 17:28:40 +02:00
|
|
|
"resin-sdk": "^7.0.0",
|
2017-08-11 11:02:58 +01:00
|
|
|
"resin-sdk-preconfigured": "^6.9.0",
|
2017-04-26 16:16:06 +03:00
|
|
|
"resin-settings-client": "^3.6.1",
|
2017-04-24 13:48:43 +01:00
|
|
|
"resin-stream-logger": "^0.0.4",
|
2017-09-22 19:17:28 +03:00
|
|
|
"resin-sync": "^9.2.3",
|
2015-08-20 15:54:42 -04:00
|
|
|
"rimraf": "^2.4.3",
|
2015-10-21 10:17:10 -04:00
|
|
|
"rindle": "^1.0.0",
|
2017-06-22 18:58:09 +02:00
|
|
|
"semver": "^5.3.0",
|
2017-03-29 12:03:40 +01:00
|
|
|
"stream-to-promise": "^2.2.0",
|
|
|
|
"tmp": "0.0.31",
|
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-10-24 19:19:43 +02:00
|
|
|
"update-notifier": "^2.2.0"
|
2017-03-28 12:09:58 +03:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
|
|
|
"removedrive": "^1.0.0"
|
2014-10-31 09:37:29 -04:00
|
|
|
}
|
2017-12-19 08:37:19 +00:00
|
|
|
}
|