0
mirror of https://github.com/valentineus/simple-container.git synced 2025-04-28 00:41:24 +03:00
simple-container/package.json

44 lines
1.1 KiB
JSON
Raw Normal View History

2017-10-04 19:59:46 +04:00
{
"name": "simple-container",
"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": {
"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/"
}
}