Skip to content

Commit 11a68f5

Browse files
committed
Update repository URL and rename to subunit-js
1 parent 64758ca commit 11a68f5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
node-subunit
2-
============
1+
subunit-js
2+
==========
33

44
Provides utilities for reading and writing
55
[Subunit streams](https://github.com/testing-cabal/subunit) with Node.js,
@@ -8,7 +8,7 @@ targeting Node versions 0.10 (pre-packaged on Ubuntu Trusty) and higher.
88
Installation
99
------------
1010

11-
npm install --save node-subunit
11+
npm install --save subunit-js
1212

1313
Usage
1414
-----
@@ -51,7 +51,7 @@ outputs objects as described above. To read a file `testrepository.subunit`:
5151

5252
```javascript
5353
var fs = require('fs');
54-
var subunit = require('node-subunit');
54+
var subunit = require('subunit-js');
5555

5656
fs.createReadStream('testrepository.subunit')
5757
.pipe(new subunit.SubunitToObjectStream())

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "node-subunit",
2+
"name": "subunit-js",
33
"version": "0.0.1",
44
"description": "Subunit stream I/O for Node",
55
"main": "index.js",
@@ -26,6 +26,6 @@
2626
],
2727
"repository": {
2828
"type": "git",
29-
"url": "https://github.com/timothyb89/node-subunit"
29+
"url": "https://github.com/testing-cabal/subunit-js"
3030
}
3131
}

0 commit comments

Comments
 (0)