forked from michaelrhodes/piece-length
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 879 Bytes
/
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
{
"name": "piece-length",
"version": "1.0.0",
"description": "Finds the optimal piece length for a given number of bytes.",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"closest-to": "~2.0.0"
},
"devDependencies": {
"tape": "~2.0.0"
},
"scripts": {
"test": "tape test/*.js"
},
"testling": {
"files": "test/*.js",
"browsers": {
"ie": [7, 8, 9, 10],
"chrome": [25],
"firefox": [4, 19],
"safari": [5.1, 6],
"opera": [12],
"iphone": [6],
"android": [4.2]
}
},
"repository": {
"type": "git",
"url": "[email protected]:michaelrhodes/piece-length.git"
},
"keywords": [
"piece",
"length",
"torrent"
],
"author": "Michael Rhodes",
"license": "MIT",
"bugs": {
"url": "https://github.com/michaelrhodes/piece-length/issues"
}
}