From 059a565b80477359dc4a7b7a4690b2d2b372c7dc Mon Sep 17 00:00:00 2001 From: Jorge Bucaran Date: Sat, 23 Apr 2016 22:18:11 +0900 Subject: [PATCH] Add package.json :package:. --- package.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..5e9dc40 --- /dev/null +++ b/package.json @@ -0,0 +1,32 @@ +{ + "name": "fisherman", + "description": "fish plugin manager", + "version": "2.0.1", + "author": "Jorge Bucaran", + "homepage": "https://github.com/fisherman/fisherman", + "bugs": "https://github.com/fisherman/fisherman/issues", + "keywords": [ + "install", + "plugins", + "parallel", + "concurrent", + "fish", + "fish-shell", + "package manager" + ], + "bin": { + "fisher": "./fisher.fish" + }, + "scripts": { + "install": "awk 'BEGIN { print(\"#!/usr/bin/env fish\") } { print($0) } END { print(\"fisher $argv\") }' < fisher.fish > fisher.fish_; mv fisher.fish_ fisher.fish" + }, + "preferGlobal": true, + "repository": { + "type": "git", + "url": "git+https://github.com/fisherman/fisherman.git" + }, + "engines": { + "node": "*" + }, + "license": "MIT" +}