Skip to content

Commit bc7bcd1

Browse files
authored
Merge pull request #2 from jasonkarns/npm
npm and readme metadata
2 parents 44c1c08 + 8ccba46 commit bc7bcd1

File tree

3 files changed

+46
-5
lines changed

3 files changed

+46
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/bats-assert-*.tgz

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# bats-assert
22

3-
[![GitHub license](https://img.shields.io/badge/license-CC0-blue.svg)](https://raw.githubusercontent.com/ztombol/bats-assert/master/LICENSE)
4-
[![GitHub release](https://img.shields.io/github/release/ztombol/bats-assert.svg)](https://github.com/ztombol/bats-assert/releases/latest)
5-
[![Build Status](https://travis-ci.org/ztombol/bats-assert.svg?branch=master)](https://travis-ci.org/ztombol/bats-assert)
3+
[![License](https://img.shields.io/npm/l/bats-assert.svg)](https://github.com/jasonkarns/bats-assert-1/blob/master/LICENSE)
4+
[![GitHub release](https://img.shields.io/github/release/jasonkarns/bats-assert-1.svg)](https://github.com/jasonkarns/bats-assert-1/releases)
5+
[![npm release](https://img.shields.io/npm/v/bats-assert.svg)](https://www.npmjs.com/package/bats-assert)
6+
[![Build Status](https://travis-ci.org/jasonkarns/bats-assert-1.svg?branch=master)](https://travis-ci.org/jasonkarns/bats-assert-1)
67

78
`bats-assert` is a helper library providing common assertions for
89
[Bats][bats].

package.json

Lines changed: 41 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,47 @@
11
{
22
"name": "bats-assert",
33
"version": "0.3.0",
4-
"private": true,
4+
"description": "Common assertions for Bats",
5+
"homepage": "https://github.com/jasonkarns/bats-assert-1",
6+
"license": "CC0-1.0",
7+
"contributors": [
8+
"Zoltán Tömböl (https://github.com/ztombol)",
9+
"Sam Stephenson <[email protected]> (http://sstephenson.us/)",
10+
"Jason Karns <[email protected]> (http://jason.karns.name)",
11+
"Mislav Marohnić <[email protected]> (http://mislav.net/)",
12+
"Tim Pope (https://github.com/tpope)"
13+
],
14+
"repository": {
15+
"type": "git",
16+
"url": "https://github.com/jasonkarns/bats-assert-1.git"
17+
},
18+
"bugs": {
19+
"url": "https://github.com/jasonkarns/bats-assert-1/issues"
20+
},
21+
"directories": {
22+
"lib": "src",
23+
"test": "test"
24+
},
25+
"files": [
26+
"load.bash",
27+
"src"
28+
],
29+
"scripts": {
30+
"postversion": "npm publish",
31+
"prepublishOnly": "npm run publish:github",
32+
"publish:github": "git push --follow-tags"
33+
},
534
"peerDependencies": {
635
"bats-support": "git+https://github.com/ztombol/bats-support.git#v0.2.0"
7-
}
36+
},
37+
"keywords": [
38+
"bats",
39+
"bash",
40+
"shell",
41+
"test",
42+
"unit",
43+
"assert",
44+
"assertion",
45+
"helper"
46+
]
847
}

0 commit comments

Comments
 (0)