forked from consumet/consumet.ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.35 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@consumet/extensions",
"version": "1.3.0",
"description": "Nodejs library that provides high-level APIs for obtaining information on various entertainment media such as books, movies, comic books, anime, manga, and so on.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"version": "auto-changelog -p",
"lint": "prettier --write .",
"test": "jest",
"test:anime": "jest ./test/anime",
"test:books": "jest ./test/books/libgen.test.ts",
"test:comics": "jest ./test/comics",
"test:movies": "jest ./test/movies",
"test:manga": "jest ./test/manga",
"test:lightnovels": "jest ./test/light-novels",
"test:news": "jest ./test/news",
"test:meta": "jest ./test/meta"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/consumet/consumet.ts.git"
},
"keywords": [
"consumet",
"scraper",
"streaming",
"anime",
"books",
"comics",
"movies",
"manga",
"light-novels",
"news",
"meta"
],
"authors": [
"https://github.com/riimuru",
"https://github.com/prince-ao"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/consumet/consumet.ts/issues"
},
"homepage": "https://github.com/consumet/consumet.ts#readme",
"dependencies": {
"ascii-url-encoder": "^1.2.0",
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.11",
"crypto-js": "^4.1.1",
"form-data": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-angular": "^17.0.3",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^28.1.0",
"@types/node": "^18.0.0",
"@types/ws": "^8.5.3",
"auto-changelog": "^2.4.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"jest": "^28.1.0",
"prettier": "^2.7.1",
"ts-jest": "^28.0.4",
"ts-node": "^10.9.1",
"typescript": "^4.6.4"
},
"auto-changelog": {
"template": "keepachangelog",
"preset": "typescript-preset-eslint"
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "test",
"lib": "src"
}
}