-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2.36 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
{
"name": "eiyuu",
"description": "Search tags and query completion for booru imageboards",
"funding": "https://github.com/sponsors/sinkaroid",
"version": "1.1.1",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "rm -rf build && tsc",
"test": "ts-node test/fetch.test.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --fix",
"docs": "typedoc --cname eiyuu.js.org --entryPointStrategy expand src/ index.ts",
"test:dry": "ts-node test/eiyuu.test.ts",
"test:gelbooru": "ts-node test/eiyuu.test.ts --gelbooru",
"test:danbooru": "ts-node test/eiyuu.test.ts --danbooru",
"test:hypnohub": "ts-node test/eiyuu.test.ts --hypnohub",
"test:konachan": "ts-node test/eiyuu.test.ts --konachan",
"test:lolibooru": "ts-node test/eiyuu.test.ts --lolibooru",
"test:rule34": "ts-node test/eiyuu.test.ts --rule34",
"test:realbooru": "ts-node test/eiyuu.test.ts --realbooru",
"test:safebooru": "ts-node test/eiyuu.test.ts --safebooru",
"test:tbib": "ts-node test/eiyuu.test.ts --tbib",
"test:xbooru": "ts-node test/eiyuu.test.ts --xbooru",
"test:yandere": "ts-node test/eiyuu.test.ts --yandere",
"test:mocha": "mocha --timeout 15000 -r ts-node/register 'test/mocha.test.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sinkaroid/eiyuu.git"
},
"keywords": [
"booru",
"imageboards",
"wildcard",
"gelbooru",
"danbooru",
"hypnohub",
"konachan",
"lolibooru",
"rule34",
"realbooru",
"safebooru",
"tbib",
"xbooru",
"yandere"
],
"author": "sinkaroid",
"license": "MIT",
"bugs": {
"url": "https://github.com/sinkaroid/eiyuu/issues"
},
"homepage": "https://eiyuu.js.org",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"phin": "^3.7.0"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@types/node": "^18.14.2",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^7.32.0",
"mocha": "^10.0.0",
"ts-node": "^10.8.1",
"typedoc": "^0.23.26",
"typedoc-plugin-rename-defaults": "^0.6.4",
"typedoc-theme-hierarchy": "^3.0.0",
"typescript": "^4.6.4"
}
}