-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmock_crawl.js
31 lines (30 loc) · 995 Bytes
/
mock_crawl.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
var data = {
'noffle/github-dependency-crawl/11': [],
'noffle/github-dependency-crawl/10': [],
'noffle/github-dependency-crawl/9': [],
'noffle/github-dependency-crawl/8': [],
'noffle/github-dependency-crawl/7':
[ 'noffle/github-dependency-crawl/4',
'noffle/github-dependency-crawl/5',
'noffle/github-dependency-crawl/6' ],
'noffle/github-dependency-crawl/6': [],
'noffle/github-dependency-crawl/5': [],
'noffle/github-dependency-crawl/4': [],
'noffle/github-dependency-crawl/3': [ 'noffle/ipget/18' ],
'noffle/github-dependency-crawl/2': [ 'noffle/github-dependency-crawl/3' ],
'noffle/github-dependency-crawl/1':
[ 'noffle/github-dependency-crawl/2',
'noffle/github-dependency-crawl/3' ],
'noffle/ipget/18':
[ 'ipfs/ipget/24',
'ipfs/ipget/26',
'ipfs/ipget/20',
'ipfs/ipget/21' ],
'ipfs/ipget/24': [],
'ipfs/ipget/26': [],
'ipfs/ipget/20': [],
'ipfs/ipget/21': []
}
module.exports = function(opts, cb) {
cb(null, data)
}