-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
80 lines (80 loc) · 2.21 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
{
"name": "@millenniumearl/f95api",
"main": "dist/src/index.js",
"version": "2.0.0-beta.13.2",
"author": "Millennium Earl",
"description": "Unofficial Node JS module for scraping F95Zone platform",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/MillenniumEarl/F95API.git"
},
"license": "MIT",
"keywords": [
"f95",
"f95zone",
"api",
"scraping",
"login",
"game",
"games",
"data",
"userdata",
"user data"
],
"scripts": {
"prettify": "prettier --config .prettierrc {src,test}/**/*.ts --write",
"pretest": "npm run build",
"test": "mocha --require ts-node/register test/{unit,integration}/index.ts",
"coverage": "c8 --reporter=lcov --reporter=text npm run test",
"build": "tsc --project ./",
"example": "npm run build && node --inspect ./dist/src/example.js"
},
"engines": {
"node": ">=14.0"
},
"dependencies": {
"@log4js-node/log4js-api": "^1.0.2",
"await-semaphore": "^0.1.3",
"axios": "^1.0.0",
"axios-cookiejar-support": "^4.0.2",
"axios-retry": "^3.2.5",
"cheerio": "^1.0.0-rc.12",
"iso-datestring-validator": "^2.2.2",
"js-sha256": "^0.11.0",
"tough-cookie": "^4.0.0"
},
"devDependencies": {
"@millenniumearl/recaptcha-harvester": "1.2.1",
"@types/chai": "4.3.16",
"@types/chai-as-promised": "7.1.8",
"@types/chai-spies": "1.0.6",
"@types/mocha": "^10.0.1",
"@types/mock-fs": "4.13.4",
"@types/node": "18.19.42",
"@types/rewire": "2.5.30",
"@types/tough-cookie": "4.0.5",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"c8": "8.0.1",
"chai": "4.4.1",
"chai-as-promised": "7.1.2",
"chai-spies": "1.1.0",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "4.2.1",
"inquirer": "^9.0.0",
"log4js": "6.9.1",
"mocha": "10.4.0",
"mock-fs": "5.2.0",
"prettier": "2.8.8",
"rewire": "7.0.0",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"bugs": {
"url": "https://github.com/MillenniumEarl/F95API/issues"
},
"homepage": "https://github.com/MillenniumEarl/F95API#readme"
}