aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 388f3e9fd847badc73bc4c52c203baaac073c601 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
    "name": "simple-container",
    "version": "1.1.2",
    "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"
    },
    "keywords": [
        "minimalism",
        "container",
        "testing",
        "docker",
        "simple",
        "api"
    ],
    "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"
    },
    "scripts": {
        "test": "mocha src/tests/index.js --require babel-core/register --timeout 25000",
        "build": "babel ./src/lib --out-dir ./lib",
        "check": "eslint ./src/lib/"
    }
}