Skip to content

Commit 056beac

Browse files
committed
Initial Commit
1 parent fc08519 commit 056beac

File tree

3 files changed

+39
-2
lines changed

3 files changed

+39
-2
lines changed

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
1-
# js-ipfs-unixfs
2-
JavaScript implementation of IPFS' unixfs (a Unix FileSystem representation on top of a MerkleDAG)
1+
ipfs-unixfs
2+
===========
3+
4+
[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://ipn.io)
5+
[[![](https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23ipfs)
6+
![Build Status](https://travis-ci.org/ipfs/js-ipfs-unixfs.svg?style=flat-square)](https://travis-ci.org/ipfs/js-ipfs-unixfs)
7+
![](https://img.shields.io/badge/coverage-%3F%25-yellow.svg?style=flat-square)
8+
[![Dependency Status](https://david-dm.org/ipfs/js-ipfs-unixfs.svg?style=flat-square)](https://david-dm.org/ipfs/js-ipfs-unixfs)
9+
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/feross/standard)
10+
11+
> JavaScript implementation of IPFS' unixfs (a Unix FileSystem representation on top of a MerkleDAG)

package.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "ipfs-unixfs",
3+
"version": "0.0.0",
4+
"description": "JavaScript implementation of IPFS' unixfs (a Unix FileSystem representation on top of a MerkleDAG)",
5+
"main": "src/index.js",
6+
"scripts": {
7+
"test": "mocha tests/*-test.js"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/ipfs/js-ipfs-unixfs.git"
12+
},
13+
"keywords": [
14+
"IPFS"
15+
],
16+
"author": "David Dias <[email protected]>",
17+
"license": "MIT",
18+
"bugs": {
19+
"url": "https://github.com/ipfs/js-ipfs-unixfs/issues"
20+
},
21+
"homepage": "https://github.com/ipfs/js-ipfs-unixfs#readme",
22+
"devDependencies": {
23+
"chai": "^3.5.0",
24+
"mocha": "^2.4.5",
25+
"pre-commit": "^1.1.2",
26+
"standard": "^6.0.4"
27+
}
28+
}

src/index.js

Whitespace-only changes.

0 commit comments

Comments
 (0)