Skip to content
This repository has been archived by the owner on Feb 26, 2021. It is now read-only.

Commit

Permalink
Async Crypto Endeavour (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire authored and daviddias committed Nov 3, 2016
1 parent fe1b47e commit bdcc1fa
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 21 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ node_modules

# Aegir builds
dist
lib
24 changes: 18 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
sudo: false
language: node_js
node_js:
- 4
- 5
matrix:
include:
- node_js: 4
env: CXX=g++-4.8
- node_js: 6
env:
- SAUCE=true
- CXX=g++-4.8
- node_js: stable
env: CXX=g++-4.8

# Make sure we have new NPM.
before_install:
Expand All @@ -13,12 +20,17 @@ script:
- npm test
- npm run coverage

addons:
firefox: 'latest'

before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start

after_success:
- npm run coverage-publish

addons:
firefox: 'latest'
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ js-libp2p-spdy
[![Travis CI](https://travis-ci.org/libp2p/js-libp2p-spdy.svg?branch=master)](https://travis-ci.org/libp2p/js-libp2p-spdy)
[![Circle CI](https://circleci.com/gh/libp2p/js-libp2p-spdy.svg?style=svg)](https://circleci.com/gh/libp2p/js-libp2p-spdy)
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/feross/standard)
![](https://img.shields.io/badge/npm-%3E%3D3.0.0-orange.svg?style=flat-square)
![](https://img.shields.io/badge/Node.js-%3E%3D4.0.0-orange.svg?style=flat-square)

[![Sauce Test Status](https://saucelabs.com/browser-matrix/libp2p-js-spdy.svg)](https://saucelabs.com/u/libp2p-js-spdy)

> SPDY 3.1 implementation wrapper that is compatible with libp2p Stream Muxer expected interface
Expand Down
31 changes: 17 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
"name": "libp2p-spdy",
"version": "0.9.0",
"description": "SPDY 3.1 implementation wrapper that is compatible with libp2p Stream Muxer expected interface",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"main": "src/index.js",
"scripts": {
"lint": "gulp lint",
"build": "gulp build",
Expand Down Expand Up @@ -36,28 +35,32 @@
"browser": {
"zlib": "browserify-zlib"
},
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"aegir": "^8.0.1",
"aegir": "^9.0.1",
"chai": "^3.5.0",
"interface-stream-muxer": "^0.4.0",
"libp2p-tcp": "^0.8.0",
"libp2p-websockets": "^0.8.0",
"multiaddr": "^2.0.0",
"pre-commit": "^1.1.2",
"gulp": "^3.9.1",
"interface-stream-muxer": "^0.5.0",
"libp2p-tcp": "^0.9.1",
"libp2p-websockets": "^0.9.0",
"multiaddr": "^2.0.3",
"pre-commit": "^1.1.3",
"pull-file": "^1.0.0",
"pull-pair": "^1.1.0",
"pull-stream": "^3.4.3",
"pull-stream": "^3.5.0",
"run-parallel": "^1.1.6",
"tap-spec": "^4.1.1",
"tape": "^4.2.0"
"tape": "^4.6.2"
},
"dependencies": {
"browserify-zlib": "github:ipfs/browserify-zlib",
"interface-connection": "^0.2.1",
"interface-connection": "^0.3.0",
"lodash.noop": "^3.0.1",
"pull-stream-to-stream": "^1.3.1",
"spdy-transport": "^2.0.14",
"stream-to-pull-stream": "^1.7.0"
"pull-stream-to-stream": "^1.3.3",
"spdy-transport": "^2.0.17",
"stream-to-pull-stream": "^1.7.2"
},
"contributors": [
"David Dias <daviddias.p@gmail.com>",
Expand Down

0 comments on commit bdcc1fa

Please sign in to comment.