feat: p2p addrs situation (#106)

* chore: update deps

* chore: update gitignore

* chore: update CI

* chore: update deps
This commit is contained in:
David Dias 2017-09-03 12:18:18 +01:00 committed by GitHub
parent f20267b962
commit 9e977c7d44
4 changed files with 17 additions and 12 deletions

8
.gitignore vendored
View File

@ -1,6 +1,7 @@
**/node_modules/ **/node_modules/
**/*.log **/*.log
test/repo-tests* test/repo-tests*
**/bundle.js
# Logs # Logs
logs logs
@ -31,4 +32,11 @@ build
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules node_modules
lib
dist dist
test/test-data/go-ipfs-repo/LOCK
test/test-data/go-ipfs-repo/LOG
test/test-data/go-ipfs-repo/LOG.old
# while testing npm5
package-lock.json

View File

@ -3,21 +3,18 @@ language: node_js
matrix: matrix:
include: include:
- node_js: 4
env: CXX=g++-4.8
- node_js: 6 - node_js: 6
env: CXX=g++-4.8 env: CXX=g++-4.8
- node_js: stable - node_js: 8
env: CXX=g++-4.8 env: CXX=g++-4.8
# - node_js: stable
# Make sure we have new NPM. # env: CXX=g++-4.8
before_install:
- npm install -g npm@4
script: script:
- npm run lint - npm run lint
- npm test - npm run test
- npm run coverage - npm run coverage
- make test
before_script: before_script:
- export DISPLAY=:99.0 - export DISPLAY=:99.0

View File

@ -10,7 +10,7 @@
[![Dependency Status](https://david-dm.org/libp2p/js-libp2p-crypto.svg?style=flat-square)](https://david-dm.org/libp2p/js-libp2p-crypto) [![Dependency Status](https://david-dm.org/libp2p/js-libp2p-crypto.svg?style=flat-square)](https://david-dm.org/libp2p/js-libp2p-crypto)
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/feross/standard) [![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/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) ![](https://img.shields.io/badge/Node.js-%3E%3D6.0.0-orange.svg?style=flat-square)
> Crypto primitives for libp2p in JavaScript > Crypto primitives for libp2p in JavaScript

View File

@ -34,7 +34,7 @@
"async": "^2.5.0", "async": "^2.5.0",
"browserify-aes": "^1.0.6", "browserify-aes": "^1.0.6",
"keypair": "^1.0.1", "keypair": "^1.0.1",
"libp2p-crypto-secp256k1": "~0.2.1", "libp2p-crypto-secp256k1": "~0.2.2",
"multihashing-async": "~0.4.6", "multihashing-async": "~0.4.6",
"pem-jwk": "^1.5.1", "pem-jwk": "^1.5.1",
"protocol-buffers": "^3.2.1", "protocol-buffers": "^3.2.1",
@ -46,7 +46,7 @@
"devDependencies": { "devDependencies": {
"aegir": "^11.0.2", "aegir": "^11.0.2",
"benchmark": "^2.1.4", "benchmark": "^2.1.4",
"chai": "^4.1.0", "chai": "^4.1.2",
"dirty-chai": "^2.0.1", "dirty-chai": "^2.0.1",
"pre-commit": "^1.2.2" "pre-commit": "^1.2.2"
}, },
@ -55,7 +55,7 @@
"test" "test"
], ],
"engines": { "engines": {
"node": ">=4.0.0", "node": ">=6.0.0",
"npm": ">=3.0.0" "npm": ">=3.0.0"
}, },
"repository": { "repository": {