Skip to content
This repository was archived by the owner on Jul 21, 2023. It is now read-only.

Commit 9e977c7

Browse files
authored
feat: p2p addrs situation (#106)
* chore: update deps * chore: update gitignore * chore: update CI * chore: update deps
1 parent f20267b commit 9e977c7

File tree

4 files changed

+17
-12
lines changed

4 files changed

+17
-12
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
**/node_modules/
22
**/*.log
33
test/repo-tests*
4+
**/bundle.js
45

56
# Logs
67
logs
@@ -31,4 +32,11 @@ build
3132
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
3233
node_modules
3334

35+
lib
3436
dist
37+
test/test-data/go-ipfs-repo/LOCK
38+
test/test-data/go-ipfs-repo/LOG
39+
test/test-data/go-ipfs-repo/LOG.old
40+
41+
# while testing npm5
42+
package-lock.json

.travis.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,18 @@ language: node_js
33

44
matrix:
55
include:
6-
- node_js: 4
7-
env: CXX=g++-4.8
86
- node_js: 6
97
env: CXX=g++-4.8
10-
- node_js: stable
8+
- node_js: 8
119
env: CXX=g++-4.8
12-
13-
# Make sure we have new NPM.
14-
before_install:
15-
- npm install -g npm@4
10+
# - node_js: stable
11+
# env: CXX=g++-4.8
1612

1713
script:
1814
- npm run lint
19-
- npm test
15+
- npm run test
2016
- npm run coverage
17+
- make test
2118

2219
before_script:
2320
- export DISPLAY=:99.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[![Dependency Status](https://david-dm.org/libp2p/js-libp2p-crypto.svg?style=flat-square)](https://david-dm.org/libp2p/js-libp2p-crypto)
1111
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/feross/standard)
1212
![](https://img.shields.io/badge/npm-%3E%3D3.0.0-orange.svg?style=flat-square)
13-
![](https://img.shields.io/badge/Node.js-%3E%3D4.0.0-orange.svg?style=flat-square)
13+
![](https://img.shields.io/badge/Node.js-%3E%3D6.0.0-orange.svg?style=flat-square)
1414

1515
> Crypto primitives for libp2p in JavaScript
1616

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"async": "^2.5.0",
3535
"browserify-aes": "^1.0.6",
3636
"keypair": "^1.0.1",
37-
"libp2p-crypto-secp256k1": "~0.2.1",
37+
"libp2p-crypto-secp256k1": "~0.2.2",
3838
"multihashing-async": "~0.4.6",
3939
"pem-jwk": "^1.5.1",
4040
"protocol-buffers": "^3.2.1",
@@ -46,7 +46,7 @@
4646
"devDependencies": {
4747
"aegir": "^11.0.2",
4848
"benchmark": "^2.1.4",
49-
"chai": "^4.1.0",
49+
"chai": "^4.1.2",
5050
"dirty-chai": "^2.0.1",
5151
"pre-commit": "^1.2.2"
5252
},
@@ -55,7 +55,7 @@
5555
"test"
5656
],
5757
"engines": {
58-
"node": ">=4.0.0",
58+
"node": ">=6.0.0",
5959
"npm": ">=3.0.0"
6060
},
6161
"repository": {

0 commit comments

Comments
 (0)