This repository was archived by the owner on Sep 12, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) 路 1.42 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) 路 1.42 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": "@lowlighter/rakun",
"version": "1.0.7",
"description": "A parser for anime torrent to extract features",
"main": "dist/build/rakun.js",
"directories": {
"test": "tests"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"axios": "^0.27.2",
"babel-preset-minify": "^0.5.2",
"colors": "^1.4.0",
"eslint": "^8.18.0",
"jest": "^28.1.1",
"minimist": "^1.2.6",
"simple-git": "^3.10.0",
"typescript": "^4.7.4",
"xml2json": "^0.12.0"
},
"scripts": {
"clean": "npx tsc --build --clean",
"build": "npx tsc",
"transpile": "npx babel dist/build -d dist",
"test-cases": "npx jest --json --outputFile=tests/results.json || true",
"test-threshold": "node tests/threshold.js --threshold=85%",
"test": "npm run test-cases && npm run test-threshold",
"build-and-test": "npm run clean && npm run build && npm run test",
"publish-if-possible": "npm publish --access public || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lowlighter/rakun.git"
},
"keywords": [
"anime",
"torrent",
"parser"
],
"author": "lowlighter",
"license": "MIT",
"bugs": {
"url": "https://github.com/lowlighter/rakun/issues"
},
"homepage": "https://github.com/lowlighter/rakun#readme",
"engines": {
"node": ">=14.0.0"
},
"files": [
"/dist"
]
}