-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.32 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
{
"name": "magnetizer",
"version": "2.0.2",
"description": "Library for decoding and encoding magnet links",
"main": "src/index.js",
"scripts": {
"build": "./node_modules/.bin/tsc",
"lint": "eslint src/**/*.ts",
"test": "npm run lint && ./node_modules/.bin/jest --runInBand",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isolomak/magnetizer.git"
},
"keywords": [
"magnet",
"magnet-uri",
"magnet-link",
"uri",
"link",
"torrent",
".torrent",
"bittorrent",
"parser",
"decoder",
"encoder",
"create",
"parse",
"generate"
],
"author": "isolomak",
"license": "MIT",
"bugs": {
"url": "https://github.com/isolomak/magnetizer/issues"
},
"homepage": "https://github.com/isolomak/magnetizer#readme",
"dependencies": {
"hi-base32": "^0.5.0"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.29.0",
"eslint-plugin-jest": "^27.1.6",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"types": "./lib/index.d.ts",
"files": [
"lib/**/*",
"LICENSE.md"
]
}