From e8a770bde72a4d99cd102ccd8f15bc3c7fc6fad4 Mon Sep 17 00:00:00 2001 From: Mirco Sanguineti Date: Mon, 8 Apr 2019 11:26:11 +0300 Subject: [PATCH] build(npm): initialise npm --- .vscode/settings.json | 4 ++++ package.json | 27 +++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 .vscode/settings.json create mode 100644 package.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..bd2d8b8e --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,4 @@ +{ + "licenser.author": "Mirco Sanguineti", + "licenser.license": "MIT" +} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 00000000..d7adbf7e --- /dev/null +++ b/package.json @@ -0,0 +1,27 @@ +{ + "name": "git-oneflow", + "version": "0.1.0", + "description": "CLI tooling implementing GIT OneFlow branching model", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/msanguineti/git-oneflow.git" + }, + "keywords": [ + "git", + "oneflow", + "branching", + "model", + "Adam", + "Ruka" + ], + "author": "Mirco Sanguineti", + "license": "MIT", + "bugs": { + "url": "https://github.com/msanguineti/git-oneflow/issues" + }, + "homepage": "https://github.com/msanguineti/git-oneflow#readme" +}