diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..68c2e98 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/bats-assert-*.tgz diff --git a/package.json b/package.json index d81b21c..4d4b971 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,42 @@ { "name": "bats-assert", "version": "0.3.0", - "private": true, + "description": "Common assertions for Bats", + "homepage": "https://github.com/jasonkarns/bats-assert-1", + "license": "CC0-1.0", + "contributors": [ + "Zoltán Tömböl (https://github.com/ztombol)", + "Sam Stephenson (http://sstephenson.us/)", + "Jason Karns (http://jason.karns.name)", + "Mislav Marohnić (http://mislav.net/)", + "Tim Pope (https://github.com/tpope)" + ], + "repository": { + "type": "git", + "url": "https://github.com/jasonkarns/bats-assert-1.git" + }, + "bugs": { + "url": "https://github.com/jasonkarns/bats-assert-1/issues" + }, + "directories": { + "lib": "src", + "test": "test" + }, + "files": [ + "load.bash", + "src" + ], "peerDependencies": { "bats-support": "git+https://github.com/ztombol/bats-support.git#v0.2.0" - } + }, + "keywords": [ + "bats", + "bash", + "shell", + "test", + "unit", + "assert", + "assertion", + "helper" + ] }