badgers, ci, standard, precommit

This commit is contained in:
David Dias 2015-08-25 11:00:19 +01:00
parent e770ce7822
commit 75f8be7ac6
3 changed files with 45 additions and 2 deletions

13
.travis.yml Normal file
View File

@ -0,0 +1,13 @@
language: node_js
node_js:
- "iojs"
branches:
only:
- master
before_install:
- npm i -g npm
# Workaround for a permissions issue with Travis virtual machine images
script:
- npm test

View File

@ -1,2 +1,6 @@
# node-libp2p
Node.js implementation of libp2p
node-libp2p
===========
[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://ipn.io) [[![](https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23ipfs) ![Build Status](https://travis-ci.org/diasdavid/node-libp2p.svg?style=flat-square)](https://travis-ci.org/diasdavid/node-libp2p) ![](https://img.shields.io/badge/coverage-%3F-yellow.svg?style=flat-square) [![Dependency Status](https://david-dm.org/diasdavid/node-libp2p.svg?style=flat-square)](https://david-dm.org/diasdavid/node-libp2p) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/feross/standard)
> Node.js implementation of libp2p

26
package.json Normal file
View File

@ -0,0 +1,26 @@
{
"name": "libp2p",
"version": "0.0.0",
"description": "Node.js implementation of libp2p",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/diasdavid/node-libp2p.git"
},
"keywords": [
"IPFS"
],
"author": "David Dias <daviddias@ipfs.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/diasdavid/node-libp2p/issues"
},
"homepage": "https://github.com/diasdavid/node-libp2p",
"devDependencies": {
"pre-commit": "^1.1.1",
"standard": "^5.1.0"
}
}