aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json36
1 files changed, 36 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..af90cf5
--- /dev/null
+++ b/package.json
@@ -0,0 +1,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/"
+ }
+}