forked from Novage/wt-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.76 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
59
60
61
62
63
64
65
66
{
"name": "wt-tracker",
"description": "High performance WebTorrent tracker",
"version": "0.0.1",
"license": "Apache-2.0",
"author": "Novage",
"homepage": "https://github.com/Novage/wt-tracker",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10.0.0"
},
"bin": {
"wt-tracker": "./bin/wt-tracker"
},
"keywords": [
"p2p",
"peer-to-peer",
"webrtc",
"torrent",
"bittorrent",
"bittorrent-tracker",
"webtorrent",
"tracker",
"websockets"
],
"scripts": {
"start": "node ./dist/run-uws-tracker.js",
"build": "npm run lint && npm run clean && npm run compile",
"compile": "tsc",
"lint": "tslint -c ./tslint.json -p ./tsconfig.tslint.json",
"clean": "rimraf dist",
"watch": "tsc --watch",
"test": "npm run test:clean && npm run test:compile && npm run test:run",
"test:run": "nyc mocha test_dist/**/*.test.js",
"test:compile": "tsc --project tsconfig.test.json",
"test:clean": "rimraf test_dist",
"test:coverage": "nyc report --reporter=lcov --reporter=text",
"test:coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/Novage/wt-tracker.git"
},
"dependencies": {
"debug": "^4.1.1",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v15.9.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/debug": "^4.1.3",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.0",
"@types/ws": "^6.0.1",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"rimraf": "^2.6.3",
"ts-mockito": "^2.3.1",
"tslint": "^5.15.0",
"tslint-sonarts": "^1.9.0",
"typescript": "^3.4.1",
"ws": "^6.2.1"
}
}