Skip to content
This repository has been archived by the owner on Mar 11, 2020. It is now read-only.

Chore/lead maintainer #27

Merged
merged 3 commits into from
Nov 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ build/Release
node_modules

dist
package-lock.json
24 changes: 2 additions & 22 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,13 @@ language: node_js

matrix:
include:
- node_js: 4
env: CXX=g++-4.8
- node_js: 6
env:
- SAUCE=true
- CXX=g++-4.8
- node_js: 8
- node_js: 10
- node_js: stable
env: CXX=g++-4.8

# Make sure we have new NPM.
before_install:
- npm install -g npm

script:
- npm run lint

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 @@ -14,6 +14,10 @@ Publishing a test suite as a module lets multiple modules all ensure compatibili

The API is presented with both Node.js and Go primitives, however, there is no actual limitations for it to be extended to any other language, pushing forward the cross compatibility and interop through diferent stacks.

## Lead Maintainer

[Jacob Heun](https://github.com/jacobheun/)

# Modules that implement the interface

- [js-libp2p-tcp](https://github.com/libp2p/js-libp2p-tcp)
Expand Down
15 changes: 0 additions & 15 deletions circle.yml

This file was deleted.

22 changes: 12 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,21 @@
"name": "interface-connection",
"version": "0.3.2",
"description": "A test suite and interface you can use to implement a connection interface.",
"leadMaintainer": "Jacob Heun <[email protected]>",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"lint": "aegir-lint",
"build": "aegir-build",
"test": "exit 0",
"lint": "aegir lint",
"build": "aegir build",
"test": "node -e 'process.exit()'",
"release": "aegir-release --node",
"release-minor": "aegir-release --type minor",
"release-major": "aegir-release --type major"
},
"pre-commit": [
"lint",
"test"
"lint"
],
"repository": {
"type": "git",
Expand All @@ -22,22 +25,21 @@
"keywords": [
"IPFS"
],
"author": "David Dias <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/libp2p/interface-connection/issues"
},
"homepage": "https://github.com/libp2p/interface-connection",
"dependencies": {
"timed-tape": "~0.1.1",
"pull-defer": "~0.2.2"
"pull-defer": "~0.2.3"
},
"devDependencies": {
"aegir": "^11.0.0"
"aegir": "^17.0.1"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
"node": ">=8.0.0",
"npm": ">=6.0.0"
},
"contributors": [
"David Dias <[email protected]>",
Expand Down