Skip to content

Commit e2bc987

Browse files
committed
refactor: clean up sub package.json files and readmes
1 parent 21e1f34 commit e2bc987

File tree

7 files changed

+7
-159
lines changed

7 files changed

+7
-159
lines changed

src/circuit/package.json

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,5 @@
11
{
22
"name": "libp2p-circuit",
3-
"version": "0.3.7",
43
"description": "JavaScript implementation of circuit/switch relaying",
5-
"main": "src/index.js",
6-
"contributors": [
7-
"David Dias <[email protected]>",
8-
"Dmitriy Ryajov <[email protected]>",
9-
"Friedel Ziegelmayer <[email protected]>",
10-
"Hugo Dias <[email protected]>",
11-
"Jacob Heun <[email protected]>",
12-
"Jacob Heun <[email protected]>",
13-
"Maciej Krüger <[email protected]>",
14-
"Oli Evans <[email protected]>",
15-
"Pedro Teixeira <[email protected]>",
16-
"Vasco Santos <[email protected]>",
17-
"Victor Bjelkholm <[email protected]>",
18-
"Yusef Napora <[email protected]>",
19-
"dirkmc <[email protected]>"
20-
]
4+
"main": "./index.js"
215
}
Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
{
22
"name": "libp2p-connection-manager",
3-
"version": "0.1.0",
43
"description": "JS Libp2p Connection Manager",
5-
"main": "src/index.js",
6-
"contributors": [
7-
"David Dias <[email protected]>",
8-
"Jacob Heun <[email protected]>",
9-
"Pedro Teixeira <[email protected]>",
10-
"Vasco Santos <[email protected]>"
11-
]
4+
"main": "./index.js"
125
}

src/identify/package.json

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,5 @@
11
{
22
"name": "libp2p-identify",
3-
"version": "0.7.6",
43
"description": "libp2p Identify Protocol",
5-
"main": "src/index.js",
6-
"contributors": [
7-
"David Dias <[email protected]>",
8-
"Friedel Ziegelmayer <[email protected]>",
9-
"Greenkeeper <[email protected]>",
10-
"Hugo Dias <[email protected]>",
11-
"Jacob Heun <[email protected]>",
12-
"Jacob Heun <[email protected]>",
13-
"Maciej Krüger <[email protected]>",
14-
"Richard Littauer <[email protected]>",
15-
"Vasco Santos <[email protected]>",
16-
"Yusef Napora <[email protected]>",
17-
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <[email protected]>"
18-
]
4+
"main": "./index.js"
195
}

src/ping/package.json

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,5 @@
11
{
22
"name": "libp2p-ping",
3-
"version": "0.8.5",
43
"description": "libp2p Ping protocol implementation",
5-
"main": "src/index.js",
6-
"contributors": [
7-
"David Dias <[email protected]>",
8-
"Francisco Baio Dias <[email protected]>",
9-
"Friedel Ziegelmayer <[email protected]>",
10-
"Hugo Dias <[email protected]>",
11-
"Jacob Heun <[email protected]>",
12-
"João Antunes <[email protected]>",
13-
"Richard Littauer <[email protected]>",
14-
"Vasco Santos <[email protected]>",
15-
"Vasco Santos <[email protected]>",
16-
"greenkeeperio-bot <[email protected]>",
17-
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <[email protected]>"
18-
]
4+
"main": "./index.js"
195
}

src/pnet/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ use one of the methods below to generate your key.
4545
If you have libp2p-pnet locally, you can run the following from the projects root.
4646

4747
```sh
48-
node src/key-generator.js > swarm.key
48+
node ./key-generator.js > swarm.key
4949
```
5050

5151
#### From a module using libp2p

src/pnet/package.json

Lines changed: 1 addition & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,5 @@
11
{
22
"name": "libp2p-pnet",
3-
"version": "0.1.0",
43
"description": "Private Network protection implementation",
5-
"main": "src/index.js",
6-
"dependencies": {
7-
"debug": "^4.1.1",
8-
"interface-connection": "~0.3.3",
9-
"pull-cat": "^1.1.11",
10-
"pull-defer": "~0.2.3",
11-
"pull-handshake": "^1.1.4",
12-
"pull-reader": "^1.3.1",
13-
"pull-stream": "^3.6.9",
14-
"xsalsa20": "^1.0.2"
15-
},
16-
"devDependencies": {
17-
"aegir": "^18.2.2",
18-
"async": "^2.6.2",
19-
"chai": "^4.2.0",
20-
"dirty-chai": "^2.0.1",
21-
"peer-id": "~0.12.2",
22-
"pull-pair": "^1.1.0"
23-
},
24-
"engines": {
25-
"node": ">=6.0.0",
26-
"npm": ">=3.0.0"
27-
},
28-
"repository": {
29-
"type": "git",
30-
"url": "https://github.com/libp2p/js-libp2p-pnet.git"
31-
},
32-
"bugs": {
33-
"url": "https://github.com/libp2p/js-libp2p-pnet/issues"
34-
},
35-
"homepage": "https://github.com/libp2p/js-libp2p-pnet",
36-
"contributors": [
37-
"Jacob Heun <[email protected]>",
38-
"Jacob Heun <[email protected]>"
39-
]
4+
"main": "./index.js"
405
}

src/switch/package.json

Lines changed: 1 addition & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,5 @@
11
{
22
"name": "libp2p-switch",
3-
"version": "0.43.0",
43
"description": "libp2p switch implementation in JavaScript",
5-
"leadMaintainer": "Jacob Heun <[email protected]>",
6-
"main": "src/index.js",
7-
"files": [
8-
"src",
9-
"dist"
10-
],
11-
"scripts": {
12-
"lint": "aegir lint",
13-
"build": "aegir build",
14-
"test": "aegir test -t node -t browser",
15-
"test:node": "aegir test -t node",
16-
"test:browser": "aegir test -t browser",
17-
"release": "aegir release -t node -t browser",
18-
"release-minor": "aegir release --type minor -t node -t browser",
19-
"release-major": "aegir release --type major -t node -t browser",
20-
"coverage": "aegir coverage",
21-
"coverage-publish": "aegir coverage --provider coveralls"
22-
},
23-
"repository": {
24-
"type": "git",
25-
"url": "https://github.com/libp2p/js-libp2p-switch.git"
26-
},
27-
"keywords": [
28-
"IPFS"
29-
],
30-
"license": "MIT",
31-
"bugs": {
32-
"url": "https://github.com/libp2p/js-libp2p-switch/issues"
33-
},
34-
"homepage": "https://github.com/libp2p/js-libp2p-switch",
35-
"engines": {
36-
"node": ">=6.0.0",
37-
"npm": ">=3.0.0"
38-
},
39-
"contributors": [
40-
"Alan Shaw <[email protected]>",
41-
"Alan Shaw <[email protected]>",
42-
"Arnaud <[email protected]>",
43-
"David Dias <[email protected]>",
44-
"David Dias <[email protected]>",
45-
"Dmitriy Ryajov <[email protected]>",
46-
"Francisco Baio Dias <[email protected]>",
47-
"Friedel Ziegelmayer <[email protected]>",
48-
"Greenkeeper <[email protected]>",
49-
50-
"Hugo Dias <[email protected]>",
51-
"Hugo Dias <[email protected]>",
52-
"Jacob Heun <[email protected]>",
53-
"Jacob Heun <[email protected]>",
54-
"Kevin Kwok <[email protected]>",
55-
"Kobi Gurkan <[email protected]>",
56-
"Maciej Krüger <[email protected]>",
57-
"Matteo Collina <[email protected]>",
58-
"Michael Fakhry <[email protected]>",
59-
"Oli Evans <[email protected]>",
60-
"Pau Ramon Revilla <[email protected]>",
61-
"Pedro Teixeira <[email protected]>",
62-
"Pius Nyakoojo <[email protected]>",
63-
"Richard Littauer <[email protected]>",
64-
"Sid Harder <[email protected]>",
65-
"Vasco Santos <[email protected]>",
66-
"greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>",
67-
"harrshasri <[email protected]>",
68-
"kumavis <[email protected]>",
69-
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <[email protected]>"
70-
]
4+
"main": "./index.js"
715
}

0 commit comments

Comments
 (0)