Add package.json 📦.

This commit is contained in:
Jorge Bucaran 2016-04-23 22:18:11 +09:00
parent a5f2a79db9
commit 059a565b80
No known key found for this signature in database
GPG key ID: E54BA3C0E646DB30

32
package.json Normal file
View file

@ -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"
}