-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.27 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.27 KB
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
{
"name": "bncode",
"version": "0.6.0",
"description": "BitTorrent bencoding and decoding library for Node.js",
"author": "Tim Becker <tim.becker@kuriositaet.de>",
"contributors": [
"Feross Aboukhadijeh <feross@feross.org>",
"Roly Fentanes <roly426@gmail.com>",
"Patrick Williams <patrick@bittorrent.com>",
"Clark Fischer <clark.fischer@gmail.com>"
],
"license": "MIT",
"type": "module",
"main": "./bncode.js",
"types": "./index.d.ts",
"exports": {
".": {
"import": "./bncode.js",
"types": "./index.d.ts"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git://github.com/a2800276/bncode.git"
},
"bugs": {
"url": "https://github.com/a2800276/bncode/issues"
},
"homepage": "https://github.com/a2800276/bncode#readme",
"keywords": [
"bencode",
"bencoding",
"bittorrent",
"torrent",
"encode",
"decode",
"parser",
"esm",
"deno",
"bun"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test": "node test/test.mjs",
"test:deno": "deno test --allow-read test/test-deno.js",
"test:bun": "bun test/test.mjs",
"test:all": "npm test && npm run test:deno && npm run test:bun"
},
"dependencies": {},
"devDependencies": {}
}