mirror of
https://github.com/fluencelabs/js-libp2p-secio
synced 2025-03-15 18:00:52 +00:00
chore: add discourse badge (#105)
This commit is contained in:
parent
9b16472930
commit
1329e9cc2d
44
.travis.yml
Normal file
44
.travis.yml
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
language: node_js
|
||||||
|
|
||||||
|
cache: npm
|
||||||
|
|
||||||
|
stages:
|
||||||
|
- check
|
||||||
|
- test
|
||||||
|
- cov
|
||||||
|
|
||||||
|
node_js:
|
||||||
|
- '10'
|
||||||
|
|
||||||
|
os:
|
||||||
|
- linux
|
||||||
|
- osx
|
||||||
|
- windows
|
||||||
|
|
||||||
|
script: npx nyc -s npm run test:node -- --bail
|
||||||
|
after_success: npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
include:
|
||||||
|
- stage: check
|
||||||
|
script:
|
||||||
|
- npx aegir commitlint --travis
|
||||||
|
- npx aegir dep-check
|
||||||
|
- npm run lint
|
||||||
|
|
||||||
|
- stage: test
|
||||||
|
name: chrome
|
||||||
|
addons:
|
||||||
|
chrome: stable
|
||||||
|
script:
|
||||||
|
- npx aegir test -t browser
|
||||||
|
|
||||||
|
- stage: test
|
||||||
|
name: firefox
|
||||||
|
addons:
|
||||||
|
firefox: latest
|
||||||
|
script:
|
||||||
|
- npx aegir test -t browser -- --browsers FirefoxHeadless
|
||||||
|
|
||||||
|
notifications:
|
||||||
|
email: false
|
13
README.md
13
README.md
@ -1,12 +1,11 @@
|
|||||||
# js-libp2p-secio
|
# js-libp2p-secio
|
||||||
|
|
||||||
[](http://ipn.io)
|
[](http://protocol.ai)
|
||||||
[](http://ipfs.io/)
|
[](http://libp2p.io/)
|
||||||
[](http://webchat.freenode.net/?channels=%23ipfs)
|
[](http://webchat.freenode.net/?channels=%23libp2p)
|
||||||
[](https://github.com/RichardLitt/standard-readme)
|
[](https://discuss.libp2p.io)
|
||||||
[](https://coveralls.io/github/libp2p/js-libp2p-secio?branch=master)
|
[](https://codecov.io/gh/libp2p/js-libp2p-secio)
|
||||||
[](https://travis-ci.org/libp2p/js-libp2p-secio)
|
[](https://travis-ci.com/libp2p/js-libp2p-secio)
|
||||||
[](https://circleci.com/gh/libp2p/js-libp2p-secio)
|
|
||||||
[](https://david-dm.org/libp2p/js-libp2p-secio)
|
[](https://david-dm.org/libp2p/js-libp2p-secio)
|
||||||
[](https://github.com/feross/standard)
|
[](https://github.com/feross/standard)
|
||||||

|

|
||||||
|
2
ci/Jenkinsfile
vendored
2
ci/Jenkinsfile
vendored
@ -1,2 +0,0 @@
|
|||||||
// Warning: This file is automatically synced from https://github.com/ipfs/ci-sync so if you want to change it, please change it there and ask someone to sync all repositories.
|
|
||||||
javascript()
|
|
19
package.json
19
package.json
@ -25,25 +25,28 @@
|
|||||||
],
|
],
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"async": "^2.6.1",
|
"async": "^2.6.2",
|
||||||
"debug": "^4.1.1",
|
"debug": "^4.1.1",
|
||||||
"interface-connection": "~0.3.2",
|
"interface-connection": "~0.3.3",
|
||||||
"libp2p-crypto": "~0.16.0",
|
"libp2p-crypto": "~0.16.1",
|
||||||
"multihashing-async": "~0.5.2",
|
"multiaddr": "^6.0.6",
|
||||||
|
"multihashing-async": "~0.6.0",
|
||||||
|
"once": "^1.4.0",
|
||||||
"peer-id": "~0.12.2",
|
"peer-id": "~0.12.2",
|
||||||
"peer-info": "~0.15.1",
|
"peer-info": "~0.15.1",
|
||||||
"protons": "^1.0.1",
|
"protons": "^1.0.1",
|
||||||
"pull-defer": "~0.2.3",
|
"pull-defer": "~0.2.3",
|
||||||
"pull-handshake": "^1.1.4",
|
"pull-handshake": "^1.1.4",
|
||||||
"pull-length-prefixed": "^1.3.1",
|
"pull-length-prefixed": "^1.3.2",
|
||||||
"pull-stream": "^3.6.9"
|
"pull-stream": "^3.6.9",
|
||||||
|
"safe-buffer": "^5.1.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"aegir": "^18.0.3",
|
"aegir": "^18.2.2",
|
||||||
"benchmark": "^2.1.4",
|
"benchmark": "^2.1.4",
|
||||||
"chai": "^4.2.0",
|
"chai": "^4.2.0",
|
||||||
"dirty-chai": "^2.0.1",
|
"dirty-chai": "^2.0.1",
|
||||||
"libp2p-websockets": "~0.12.1",
|
"libp2p-websockets": "~0.12.2",
|
||||||
"multistream-select": "~0.14.4",
|
"multistream-select": "~0.14.4",
|
||||||
"pull-goodbye": "~0.0.2",
|
"pull-goodbye": "~0.0.2",
|
||||||
"pull-pair": "^1.1.0"
|
"pull-pair": "^1.1.0"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user