forked from fanpei91/torsniff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1 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
{
"name": "p2pspider",
"description": "DHT Crawler + BitTorrent Crawler = P2P Spider",
"version": "0.0.4",
"author": {
"name": "Fuck-You-GFW"
},
"main": "lib/index.js",
"bugs": {
"url": "https://github.com/Fuck-You-GFW/p2pspider/issue"
},
"scripts": {
"test": "npm run eslint",
"compile": "babel --presets es2015-loose,stage-1 src/ --out-dir lib/",
"watch-compile": "npm run compile -- --watch",
"watch": "npm run watch-compile",
"prepublish": "npm run compile",
"eslint": "eslint src/"
},
"dependencies": {
"bencode": "^0.7.0",
"bitfield": "^1.1.2",
"iconv-lite": "^0.4.13",
"is-utf8": "^0.2.1",
"lru": "^2.0.0",
"thinkit": "^4.7.0"
},
"devDependencies": {
"babel-cli": "6.3.17",
"babel-preset-es2015-loose": "6.1.4",
"babel-preset-stage-1": "6.3.13",
"eslint": "^1.10.3",
"babel-eslint": "4.1.8",
"babel-core": "6.x.x"
},
"keywords": [
"torrent",
"bittorrent",
"p2p",
"dht"
],
"license": "MIT"
}