-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 986 Bytes
/
package.json
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
32
33
34
35
36
37
38
39
{
"name": "pea-server",
"version": "0.1.0",
"description": "A browser based p2p ftp server. Files are hosted inside the web browser, a signal server in Node.js is used to setup webrtc channels between client browser and server browser.",
"main": "pea-server.js",
"dependencies": {
"events": "^1.1.1",
"express": "^4.16.2",
"fs": "^0.0.2",
"http": "^0.0.0",
"path": "^0.12.7",
"serve-static": "^1.11.2",
"socket.io": "^4.4.1",
"url": "^0.11.0",
"uuid": "^8.3.2"
},
"scripts": {
"test": "node pea-server.js"
},
"repository": {
"type": "git",
"url": "github/recap/pea-server.js"
},
"keywords": [
"p2p",
"browser",
"ftp",
"server"
],
"author": "Reggie Cushing",
"license": "BSD-2-Clause",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0"
}
}