2014-08-28 00:45:22 +04:00
|
|
|
{
|
|
|
|
"name": "Kitematic",
|
2015-05-27 00:28:13 +03:00
|
|
|
"version": "0.6.0",
|
2014-09-11 21:59:06 +04:00
|
|
|
"author": "Kitematic",
|
2015-02-26 06:51:54 +03:00
|
|
|
"description": "Simple Docker Container management for Mac OS X.",
|
2014-09-11 21:59:06 +04:00
|
|
|
"homepage": "https://kitematic.com/",
|
2015-03-09 00:49:37 +03:00
|
|
|
"main": "build/browser.js",
|
2014-09-11 21:59:06 +04:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git@github.com:kitematic/kitematic.git"
|
|
|
|
},
|
|
|
|
"bugs": "https://github.com/kitematic/kitematic/issues",
|
2014-12-28 00:32:52 +03:00
|
|
|
"scripts": {
|
2015-02-02 08:33:36 +03:00
|
|
|
"start": "gulp",
|
2015-04-17 00:22:43 +03:00
|
|
|
"test": "jest",
|
2015-02-04 01:45:16 +03:00
|
|
|
"release": "gulp release",
|
|
|
|
"release:beta": "gulp release --beta",
|
2015-04-30 02:36:51 +03:00
|
|
|
"lint": "jsxhint src",
|
- Working on changes required to setup client on windows.
- For now changes in SetupStore are made, to skip steps that do MacOS setup.
- Adding deps.ps1 script for installing all required dependencies on windows.
- Adding reset.ps1 script for removing all dependencies on windows.
- Modifying files to work with windows dependencies
- Fix for duplicate react instances in the code.
- A fix required to load only one instance of React in the application. Without such fix, on windows application loads two instances of React at start time, and crashes.
- Modifying files to support windows paths
- Modifying deps and reset powershell scripts to loose chocolatey dependency. Adding windows VirtualBox installation steps.
- Improved a workaround for adding Users directory to the shared folder in the VM on windows. Added few more fixes for Windows/Mac compatibility.
- Removing unnecessary log from deps.ps1 script,
- Updating Gulpfile to download and copy all the dependencies on application start,
- Cleaning pre and post install scripts from package.json, as they are not realy friendly for different platforms.
- Removing changes from browser.js as they were not necessary or even breaking.
- Cleaning pre and post install scripts from package.json, as they are not really friendly for different platforms.
- Fixing changes in package.json.
- Fixed reset.ps1 file to delete all folders created by the app,
- Fixed metrics.js file to properly use userAgent depending on the OS.
- Uncommented updateBinaries line in SetupStore.
- Adding open as a dependency.
- Fixing the setupStore tests.
- Adding proper directory to PATH for docker and docker-machine binaries.
- Adding support for the docker terminal command. It opens a CMD on windows and sets required env variables for the docker to work. Docker and Docker-Machine should be on the path, as they are set up there on Kitematic startup.
- Added Resources module which provides paths to all files stored in the resources directory,
- Added docker and docker-machine binary paths to Util module, to have a single place for calling those paths,
- Added binaries directory path, to Util module, to have a single place for calling this path,
- Added another exec command, which utilizes "child_process" module, and it's "exec" command, as the "exec" used right now is deprecated,
- Refactored the Installation step in the SetupStore, and connected with that SetupUtil commands to perform copying binaries from node instead of bash commands. That way application is more cross-platform friendly,
- Added new dependencies in form of fs-extra, fs-promise and any-promise, to allow yielding of fs commands in SetupUtil.
- The setup process now works correctly on windows from the beginning to end.
- Fixing broken tests.
- Improving tests.
- Adding elevated permissions to the reset script, as it is required to kill processes and remove VirtualBox.
- Added ability to run reset scripts through gulp,
- Added new npm script for resetting the environment "npm run reset".
- Refactored docker-machine module, to use Resources module for finding the machine command and general code cleaning,
- Added windows keyboard shortcut support.
- Adding the use of Resources module, instead of direct access of files in the resources dir.
- Testing appveyor.
- Testing appveyor + io.js.
- Back to node 0.10.
- Fixing permission issues with appveyor.
- Testing travis.
Signed-off-by: Dominik Deren <dominik.deren@live.com>
- Working on changes required to setup client on windows.
- For now changes in SetupStore are made, to skip steps that do MacOS setup.
- Adding deps.ps1 script for installing all required dependencies on windows.
- Adding reset.ps1 script for removing all dependencies on windows.
Fix for duplicate react instances in the code.
Modifying files to support windows paths
- Removing unnecessary log from deps.ps1 script,
- Updating Gulpfile to download and copy all the dependencies on application start,
- Cleaning pre and post install scripts from package.json, as they are not realy friendly for different platforms.
- Removing changes from browser.js as they were not necessary or even breaking.
- Fixing changes in package.json.
- Uncommented updateBinaries line in SetupStore.
- Adding open as a dependency.
- Adding proper directory to PATH for docker and docker-machine binaries.
- Fixing broken tests.
- Improving tests.
- Adding elevated permissions to the reset script, as it is required to kill processes and remove VirtualBox.
- Added ability to run reset scripts through gulp,
- Added new npm script for resetting the environment "npm run reset".
- Refactored docker-machine module, to use Resources module for finding the machine command and general code cleaning,
- Added windows keyboard shortcut support.
- Adding the use of Resources module, instead of direct access of files in the resources dir.
- Testing appveyor + io.js.
- Back to node 0.10.
- Fixing permission issues with appveyor.
Signed-off-by: Dominik Deren <dominik.deren@live.com>
2015-03-31 12:38:05 +03:00
|
|
|
"reset": "gulp reset"
|
2014-12-28 00:32:52 +03:00
|
|
|
},
|
2014-12-21 08:08:50 +03:00
|
|
|
"licenses": [
|
|
|
|
{
|
2015-03-06 05:39:57 +03:00
|
|
|
"type": "Apache-2.0",
|
|
|
|
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
|
2014-12-21 08:08:50 +03:00
|
|
|
}
|
|
|
|
],
|
2015-01-30 21:21:51 +03:00
|
|
|
"jest": {
|
2015-02-27 00:18:26 +03:00
|
|
|
"scriptPreprocessor": "<rootDir>/util/preprocessor.js",
|
|
|
|
"setupEnvScriptFile": "<rootDir>/util/testenv.js",
|
2015-04-22 18:56:46 +03:00
|
|
|
"setupTestFrameworkScriptFile": "<rootDir>/util/prepare.js",
|
2015-04-06 02:51:45 +03:00
|
|
|
"collectCoverage": true,
|
|
|
|
"testDirectoryName": "src",
|
|
|
|
"testPathIgnorePatterns": [
|
|
|
|
"/node_modules/",
|
|
|
|
"^((?!-test).)*$"
|
|
|
|
],
|
2015-01-30 21:21:51 +03:00
|
|
|
"unmockedModulePathPatterns": [
|
2015-05-11 04:09:44 +03:00
|
|
|
"alt",
|
2015-04-06 02:51:45 +03:00
|
|
|
"stream",
|
2015-02-12 02:09:17 +03:00
|
|
|
"tty",
|
|
|
|
"net",
|
|
|
|
"crypto",
|
2015-04-17 17:25:41 +03:00
|
|
|
"babel",
|
2015-04-06 02:51:45 +03:00
|
|
|
"<rootDir>/node_modules/.*JSONStream",
|
2015-02-17 06:58:00 +03:00
|
|
|
"<rootDir>/node_modules/object-assign",
|
|
|
|
"<rootDir>/node_modules/underscore",
|
2015-04-22 18:56:46 +03:00
|
|
|
"<rootDir>/node_modules/bluebird",
|
|
|
|
"<rootDir>/node_modules/source-map-support"
|
2015-01-30 21:21:51 +03:00
|
|
|
]
|
|
|
|
},
|
2015-05-18 09:27:24 +03:00
|
|
|
"docker-version": "1.6.2",
|
2015-04-16 23:29:18 +03:00
|
|
|
"docker-machine-version": "0.2.0",
|
2015-05-18 09:27:24 +03:00
|
|
|
"electron-version": "0.26.0",
|
|
|
|
"virtualbox-version": "4.3.28",
|
|
|
|
"virtualbox-filename": "VirtualBox-4.3.28.pkg",
|
|
|
|
"virtualbox-filename-win": "VirtualBox-4.3.28.exe",
|
|
|
|
"virtualbox-checksum": "60521caff652fc32ad733eee2eea27f03d0b4f7239af3bf4b21dc6f0251cf47a",
|
|
|
|
"virtualbox-checksum-win": "82039b615bf18dfff92ac1d9a15b2cbd5c59c608631ccf77e2371d0fd67a6cf7",
|
2014-08-28 00:45:22 +04:00
|
|
|
"dependencies": {
|
2015-05-09 06:14:41 +03:00
|
|
|
"alt": "^0.16.2",
|
2015-02-27 04:14:43 +03:00
|
|
|
"ansi-to-html": "0.3.0",
|
- Working on changes required to setup client on windows.
- For now changes in SetupStore are made, to skip steps that do MacOS setup.
- Adding deps.ps1 script for installing all required dependencies on windows.
- Adding reset.ps1 script for removing all dependencies on windows.
- Modifying files to work with windows dependencies
- Fix for duplicate react instances in the code.
- A fix required to load only one instance of React in the application. Without such fix, on windows application loads two instances of React at start time, and crashes.
- Modifying files to support windows paths
- Modifying deps and reset powershell scripts to loose chocolatey dependency. Adding windows VirtualBox installation steps.
- Improved a workaround for adding Users directory to the shared folder in the VM on windows. Added few more fixes for Windows/Mac compatibility.
- Removing unnecessary log from deps.ps1 script,
- Updating Gulpfile to download and copy all the dependencies on application start,
- Cleaning pre and post install scripts from package.json, as they are not realy friendly for different platforms.
- Removing changes from browser.js as they were not necessary or even breaking.
- Cleaning pre and post install scripts from package.json, as they are not really friendly for different platforms.
- Fixing changes in package.json.
- Fixed reset.ps1 file to delete all folders created by the app,
- Fixed metrics.js file to properly use userAgent depending on the OS.
- Uncommented updateBinaries line in SetupStore.
- Adding open as a dependency.
- Fixing the setupStore tests.
- Adding proper directory to PATH for docker and docker-machine binaries.
- Adding support for the docker terminal command. It opens a CMD on windows and sets required env variables for the docker to work. Docker and Docker-Machine should be on the path, as they are set up there on Kitematic startup.
- Added Resources module which provides paths to all files stored in the resources directory,
- Added docker and docker-machine binary paths to Util module, to have a single place for calling those paths,
- Added binaries directory path, to Util module, to have a single place for calling this path,
- Added another exec command, which utilizes "child_process" module, and it's "exec" command, as the "exec" used right now is deprecated,
- Refactored the Installation step in the SetupStore, and connected with that SetupUtil commands to perform copying binaries from node instead of bash commands. That way application is more cross-platform friendly,
- Added new dependencies in form of fs-extra, fs-promise and any-promise, to allow yielding of fs commands in SetupUtil.
- The setup process now works correctly on windows from the beginning to end.
- Fixing broken tests.
- Improving tests.
- Adding elevated permissions to the reset script, as it is required to kill processes and remove VirtualBox.
- Added ability to run reset scripts through gulp,
- Added new npm script for resetting the environment "npm run reset".
- Refactored docker-machine module, to use Resources module for finding the machine command and general code cleaning,
- Added windows keyboard shortcut support.
- Adding the use of Resources module, instead of direct access of files in the resources dir.
- Testing appveyor.
- Testing appveyor + io.js.
- Back to node 0.10.
- Fixing permission issues with appveyor.
- Testing travis.
Signed-off-by: Dominik Deren <dominik.deren@live.com>
- Working on changes required to setup client on windows.
- For now changes in SetupStore are made, to skip steps that do MacOS setup.
- Adding deps.ps1 script for installing all required dependencies on windows.
- Adding reset.ps1 script for removing all dependencies on windows.
Fix for duplicate react instances in the code.
Modifying files to support windows paths
- Removing unnecessary log from deps.ps1 script,
- Updating Gulpfile to download and copy all the dependencies on application start,
- Cleaning pre and post install scripts from package.json, as they are not realy friendly for different platforms.
- Removing changes from browser.js as they were not necessary or even breaking.
- Fixing changes in package.json.
- Uncommented updateBinaries line in SetupStore.
- Adding open as a dependency.
- Adding proper directory to PATH for docker and docker-machine binaries.
- Fixing broken tests.
- Improving tests.
- Adding elevated permissions to the reset script, as it is required to kill processes and remove VirtualBox.
- Added ability to run reset scripts through gulp,
- Added new npm script for resetting the environment "npm run reset".
- Refactored docker-machine module, to use Resources module for finding the machine command and general code cleaning,
- Added windows keyboard shortcut support.
- Adding the use of Resources module, instead of direct access of files in the resources dir.
- Testing appveyor + io.js.
- Back to node 0.10.
- Fixing permission issues with appveyor.
Signed-off-by: Dominik Deren <dominik.deren@live.com>
2015-03-31 12:38:05 +03:00
|
|
|
"any-promise": "^0.1.0",
|
2014-08-28 00:45:22 +04:00
|
|
|
"async": "^0.9.0",
|
2015-04-17 16:59:10 +03:00
|
|
|
"bluebird": "^2.9.24",
|
2015-02-17 07:03:28 +03:00
|
|
|
"bugsnag-js": "^2.4.7",
|
2015-04-17 19:43:08 +03:00
|
|
|
"classnames": "^1.2.0",
|
2015-04-06 02:51:45 +03:00
|
|
|
"coveralls": "^2.11.2",
|
2015-05-12 03:16:50 +03:00
|
|
|
"deep-extend": "^0.4.0",
|
2015-05-26 10:08:47 +03:00
|
|
|
"dockerode": "^2.1.4",
|
2015-02-27 04:14:43 +03:00
|
|
|
"exec": "0.2.0",
|
2015-05-12 03:16:50 +03:00
|
|
|
"install": "^0.1.8",
|
2015-01-17 21:15:26 +03:00
|
|
|
"jquery": "^2.1.3",
|
2015-04-17 16:59:10 +03:00
|
|
|
"mixpanel": "0.2.0",
|
2015-05-09 06:14:41 +03:00
|
|
|
"mkdirp": "^0.5.0",
|
2015-04-17 16:59:10 +03:00
|
|
|
"node-uuid": "^1.4.3",
|
2015-05-12 03:16:50 +03:00
|
|
|
"npm": "^2.9.1",
|
2015-01-25 21:57:51 +03:00
|
|
|
"object-assign": "^2.0.0",
|
2015-04-27 18:30:23 +03:00
|
|
|
"parseUri": "^1.2.3-2",
|
2015-04-17 16:59:10 +03:00
|
|
|
"react": "^0.13.1",
|
|
|
|
"react-bootstrap": "^0.20.3",
|
2015-01-17 21:15:26 +03:00
|
|
|
"react-retina-image": "^1.1.2",
|
2015-04-17 16:59:10 +03:00
|
|
|
"react-router": "^0.13.2",
|
|
|
|
"request": "^2.55.0",
|
2015-02-12 02:09:17 +03:00
|
|
|
"request-progress": "^0.3.1",
|
2015-04-17 16:59:10 +03:00
|
|
|
"rimraf": "^2.3.2",
|
2015-05-18 00:19:20 +03:00
|
|
|
"underscore": "^1.8.3",
|
|
|
|
"validator": "^3.39.0"
|
2014-12-21 08:08:50 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2015-04-17 16:59:10 +03:00
|
|
|
"babel": "^5.1.10",
|
2015-02-27 04:14:43 +03:00
|
|
|
"gulp": "^3.8.11",
|
2015-04-17 16:59:10 +03:00
|
|
|
"gulp-babel": "^5.1.0",
|
|
|
|
"gulp-changed": "^1.2.1",
|
2015-02-27 04:14:43 +03:00
|
|
|
"gulp-concat": "^2.5.2",
|
2015-02-02 08:33:36 +03:00
|
|
|
"gulp-cssmin": "^0.1.6",
|
2015-04-17 18:01:18 +03:00
|
|
|
"gulp-download-electron": "^0.0.5",
|
2015-02-27 04:14:43 +03:00
|
|
|
"gulp-if": "^1.2.5",
|
2015-04-06 02:51:45 +03:00
|
|
|
"gulp-insert": "^0.4.0",
|
2015-04-17 16:59:10 +03:00
|
|
|
"gulp-less": "^3.0.2",
|
2015-02-27 04:14:43 +03:00
|
|
|
"gulp-livereload": "^3.8.0",
|
2015-04-17 16:59:10 +03:00
|
|
|
"gulp-plumber": "^1.0.0",
|
|
|
|
"gulp-shell": "^0.4.1",
|
|
|
|
"gulp-sourcemaps": "^1.5.2",
|
2015-02-27 04:14:43 +03:00
|
|
|
"gulp-util": "^3.0.4",
|
2015-04-06 02:51:45 +03:00
|
|
|
"jest-cli": "kitematic/jest",
|
2015-04-17 16:59:10 +03:00
|
|
|
"jsxhint": "^0.14.0",
|
2015-04-17 16:59:58 +03:00
|
|
|
"minimist": "^1.1.1",
|
2015-04-17 16:59:10 +03:00
|
|
|
"react-tools": "^0.13.1",
|
2015-04-22 18:56:46 +03:00
|
|
|
"run-sequence": "^1.0.2",
|
|
|
|
"source-map-support": "^0.2.10"
|
2014-08-28 00:45:22 +04:00
|
|
|
}
|
|
|
|
}
|