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
|
{
"name": "simple-container",
"version": "0.0.0-alpha.1",
"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": [],
"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": {
"ancient-funicular": "^3.0.0"
},
"scripts": {
"test": "mocha src/tests/index.js --require babel-core/register",
"build": "babel ./src/lib --out-dir ./lib",
"check": "eslint ./src/lib/"
}
}
|