-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
58 lines (58 loc) · 1.53 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "p2pt",
"version": "1.5.1",
"description": "P2P connections with WebTorrent trackers",
"main": "node.js",
"type": "module",
"browser": "p2pt.js",
"types": "p2pt.d.ts",
"scripts": {
"build": "npm run build:umd && npm run build:umd-tiny",
"build:umd": "browserify ./p2pt.js -s P2PT > dist/p2pt.umd.js",
"build:umd-tiny": "browserify ./p2pt.js -p tinyify -s P2PT > dist/p2pt.umd.min.js",
"test-browser": "set BROWSER_TEST=1 && airtap --preset local --live test/*.js",
"test-node": "node test/*.js",
"test:all": "npm run test-browser && npm run test-node",
"test": "standard && start-server-and-test 'node start-trackers.js' 5001 test:all"
},
"dependencies": {
"bittorrent-tracker": "^10.0.12",
"uint8-util": "^2.2.2"
},
"optionalDependencies": {
"wrtc": "^0.4.7"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"airtap": "^4.0.4",
"airtap-manual": "^1.0.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"standard": "^17.1.0",
"start-server-and-test": "^2.0.0",
"tape": "^5.6.6",
"tinyify": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/subins2000/p2pt.git"
},
"keywords": [
"webtorrent",
"p2p",
"simple-peer",
"peer"
],
"author": "subins2000",
"license": "MIT",
"bugs": {
"url": "https://github.com/subins2000/p2pt/issues"
},
"homepage": "https://github.com/subins2000/p2pt#readme",
"standard": {
"ignore": [
"dist"
]
}
}