-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.32 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.32 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "easypeers",
"version": "0.3.1",
"description": "Easy *serverless* swarms of WebRTC peers over WebTorrent",
"main": "index.js",
"scripts": {
"test": "mocha tests/test.js",
"build": "browserify index.js --standalone Easypeers -o examples/server/public/index.js && cp examples/server/public/index.js dist/easypeers.dist.js",
"watch": "nodemon --watch . --ignore dist --ignore examples/server/public/index.js --exec \"npm run build\"",
"dev": "npm run watch & npm run start",
"start": "node examples/nodepeer.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/draeder/easypeers.git"
},
"keywords": [
"easypeers",
"peers",
"p2p",
"decentralization",
"webtorrent",
"webrtc"
],
"author": "Daniel Raeder",
"license": "MIT",
"bugs": {
"url": "https://github.com/draeder/easypeers/issues"
},
"homepage": "https://github.com/draeder/easypeers#readme",
"dependencies": {
"express": "^4.18.2",
"puppeteer": "^20.8.1",
"webtorrent": "^1.0.0",
"zerok": "^0.0.5"
},
"directories": {
"example": "examples",
"test": "test"
},
"devDependencies": {
"browserify": "^17.0.0",
"chai": "^4.3.7",
"mocha": "*",
"nodemon": "^3.0.1",
"sinon": "^15.2.0"
},
"nodemonConfig": {
"ext": "js,json,html"
}
}