forked from subins2000/p2pt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.43 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
{
"name": "p2pt",
"version": "1.5.1",
"description": "P2P connections with WebTorrent trackers",
"main": "node.js",
"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": "BROWSER_TEST=1 airtap --local test/*.js",
"test-node": "node test/*.js",
"test:all": "npm run test-node && npm run test-browser",
"test": "standard && start-server-and-test 'node start-trackers.js' 5001 test:all"
},
"dependencies": {
"wrtc": "^0.4.7",
"bittorrent-tracker": "^9.14.5",
"randombytes": "^2.1.0",
"simple-sha1": "^3.0.1"
},
"optionalDependencies": {
"@koush/wrtc": "^0.5.3"
},
"devDependencies": {
"airtap": "^3.0.0",
"browserify": "^16.5.1",
"standard": "^14.3.4",
"start-server-and-test": "^1.11.2",
"tape": "^5.0.1",
"tinyify": "^3.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"
]
}
}