aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2017-10-04 18:59:46 +0300
committerValentin Popov <info@valentineus.link>2017-10-04 18:59:46 +0300
commitb36916c7f540d55ae28962503d4d1135e3ce3092 (patch)
tree381bf9226ee3311404ba2c55e0ca9bcbabd4154c /package.json
downloadsimple-container-b36916c7f540d55ae28962503d4d1135e3ce3092.tar.xz
simple-container-b36916c7f540d55ae28962503d4d1135e3ce3092.zip
Initial commit
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/"
+ }
+}