2017-10-04 19:59:46 +04:00
|
|
|
{
|
|
|
|
"name": "simple-container",
|
2017-10-22 19:05:48 +04:00
|
|
|
"version": "1.1.2",
|
2017-10-04 19:59:46 +04:00
|
|
|
"description": "Simple and fast work with the Docker container",
|
|
|
|
"homepage": "https://github.com/valentineus/simple-container",
|
|
|
|
"license": "MIT",
|
|
|
|
"author": {
|
|
|
|
"name": "Valentin Popov",
|
|
|
|
"email": "info@valentineus.link"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/valentineus/simple-container/issues"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://github.com/valentineus/simple-container.git"
|
|
|
|
},
|
2017-10-07 01:09:26 +04:00
|
|
|
"keywords": [
|
|
|
|
"minimalism",
|
|
|
|
"container",
|
|
|
|
"testing",
|
|
|
|
"docker",
|
|
|
|
"simple",
|
|
|
|
"api"
|
|
|
|
],
|
2017-10-04 19:59:46 +04:00
|
|
|
"main": "lib/index.js",
|
|
|
|
"devDependencies": {
|
|
|
|
"babel-cli": "^6.26.0",
|
|
|
|
"babel-core": "^6.26.0",
|
|
|
|
"babel-preset-es2015": "^6.24.1",
|
|
|
|
"chai": "^4.1.2",
|
|
|
|
"eslint": "^4.8.0",
|
|
|
|
"mocha": "^4.0.0"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2017-10-05 01:52:35 +04:00
|
|
|
"dockerode": "^2.5.1"
|
2017-10-04 19:59:46 +04:00
|
|
|
},
|
|
|
|
"scripts": {
|
2017-10-07 00:00:26 +04:00
|
|
|
"test": "mocha src/tests/index.js --require babel-core/register --timeout 25000",
|
2017-10-04 19:59:46 +04:00
|
|
|
"build": "babel ./src/lib --out-dir ./lib",
|
|
|
|
"check": "eslint ./src/lib/"
|
|
|
|
}
|
|
|
|
}
|