This repository was archived by the owner on Apr 24, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +32
-18
lines changed Expand file tree Collapse file tree 7 files changed +32
-18
lines changed Original file line number Diff line number Diff line change @@ -28,4 +28,3 @@ node_modules
28
28
29
29
# Aegir builds
30
30
dist
31
- lib
Original file line number Diff line number Diff line change 1
1
sudo : false
2
2
language : node_js
3
- node_js :
4
- - 4
5
- - 5
3
+ matrix :
4
+ include :
5
+ - node_js : 4
6
+ env : CXX=g++-4.8
7
+ - node_js : 6
8
+ env :
9
+ - SAUCE=true
10
+ - CXX=g++-4.8
11
+ - node_js : stable
12
+ env : CXX=g++-4.8
6
13
7
14
# Make sure we have new NPM.
8
15
before_install :
@@ -13,12 +20,17 @@ script:
13
20
- npm test
14
21
- npm run coverage
15
22
16
- addons :
17
- firefox : ' latest'
18
-
19
23
before_script :
20
24
- export DISPLAY=:99.0
21
25
- sh -e /etc/init.d/xvfb start
22
26
23
27
after_success :
24
28
- npm run coverage-publish
29
+
30
+ addons :
31
+ firefox : ' latest'
32
+ apt :
33
+ sources :
34
+ - ubuntu-toolchain-r-test
35
+ packages :
36
+ - g++-4.8
Original file line number Diff line number Diff line change 1
- js-libp2p-webrtc-star
2
- =====================
1
+ # js-libp2p-webrtc-star
3
2
4
3
[ ![ ] ( https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square )] ( http://ipn.io )
5
4
[ ![ ] ( https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square )] ( http://webchat.freenode.net/?channels=%23ipfs )
6
5
[ ![ Build Status] ( https://travis-ci.org/libp2p/js-libp2p-webrtc-star.svg?style=flat-square )] ( https://travis-ci.org/libp2p/js-libp2p-webrtc-star )
7
6
![ ] ( https://img.shields.io/badge/coverage-%3F-yellow.svg?style=flat-square )
8
7
[ ![ Dependency Status] ( https://david-dm.org/libp2p/js-libp2p-webrtc-star.svg?style=flat-square )] ( https://david-dm.org/libp2p/js-libp2p-webrtc-star )
9
8
[ ![ js-standard-style] ( https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square )] ( https://github.com/feross/standard )
9
+ ![ ] ( https://img.shields.io/badge/npm-%3E%3D3.0.0-orange.svg?style=flat-square )
10
+ ![ ] ( https://img.shields.io/badge/Node.js-%3E%3D4.0.0-orange.svg?style=flat-square )
11
+
12
+ [ ![ Sauce Test Status] ( https://saucelabs.com/browser-matrix/js-libp2p-webrtc-star.svg )] (https://saucelabs.com/
13
+ u/js-libp2p-webrtc-star)
10
14
11
15
![ ] ( https://raw.githubusercontent.com/libp2p/interface-connection/master/img/badge.png )
12
16
![ ] ( https://raw.githubusercontent.com/libp2p/interface-transport/master/img/badge.png )
Original file line number Diff line number Diff line change 2
2
"name" : " libp2p-webrtc-star" ,
3
3
"version" : " 0.4.5" ,
4
4
"description" : " libp2p WebRTC transport that includes a discovery mechanism provided by the signalling-star" ,
5
- "main" : " lib/index.js" ,
6
- "jsnext:main" : " src/index.js" ,
5
+ "main" : " src/index.js" ,
7
6
"bin" : {
8
7
"star-sig" : " src/signalling-server/bin.js"
9
8
},
38
37
},
39
38
"homepage" : " https://github.com/libp2p/js-libp2p-webrtc-star#readme" ,
40
39
"devDependencies" : {
41
- "aegir" : " ^8 .0.1" ,
40
+ "aegir" : " ^9 .0.1" ,
42
41
"bl" : " ^1.1.2" ,
43
42
"chai" : " ^3.5.0" ,
43
+ "gulp" : " ^3.9.1" ,
44
44
"pre-commit" : " ^1.1.3" ,
45
- "run-series" : " ^1.1.4" ,
46
45
"webrtcsupport" : " ^2.2.0"
47
46
},
48
47
"dependencies" : {
48
+ "async" : " ^2.1.2" ,
49
49
"debug" : " ^2.2.0" ,
50
50
"hapi" : " ^15.0.3" ,
51
51
"interface-connection" : " ^0.2.1" ,
54
54
"peer-id" : " ^0.7.0" ,
55
55
"peer-info" : " ^0.7.0" ,
56
56
"pull-stream" : " ^3.4.3" ,
57
- "run-parallel" : " ^1.1.6" ,
58
57
"simple-peer" : " ^6.0.4" ,
59
58
"socket.io" : " ^1.4.6" ,
60
59
"socket.io-client" : " ^1.4.6" ,
67
66
" greenkeeperio-bot <[email protected] >" ,
68
67
69
68
]
70
- }
69
+ }
Original file line number Diff line number Diff line change 3
3
4
4
const expect = require ( 'chai' ) . expect
5
5
const io = require ( 'socket.io-client' )
6
- const parallel = require ( 'run- parallel' )
6
+ const parallel = require ( 'async/ parallel' )
7
7
const multiaddr = require ( 'multiaddr' )
8
8
9
9
const sigServer = require ( '../../src/signalling-server' )
Original file line number Diff line number Diff line change 4
4
5
5
const expect = require ( 'chai' ) . expect
6
6
const multiaddr = require ( 'multiaddr' )
7
- const series = require ( 'run- series' )
7
+ const series = require ( 'async/ series' )
8
8
const pull = require ( 'pull-stream' )
9
9
10
10
const WebRTCStar = require ( '../../src/webrtc-star' )
Original file line number Diff line number Diff line change 3
3
4
4
const expect = require ( 'chai' ) . expect
5
5
const multiaddr = require ( 'multiaddr' )
6
- const series = require ( 'run- series' )
6
+ const series = require ( 'async/ series' )
7
7
const pull = require ( 'pull-stream' )
8
8
9
9
const WebRTCStar = require ( '../../src/webrtc-star' )
You can’t perform that action at this time.
0 commit comments