2020-09-29 15:11:43 +00:00
|
|
|
{
|
2021-03-08 11:16:15 +00:00
|
|
|
"main": "./src/index.ts",
|
2020-11-22 14:22:21 +00:00
|
|
|
"name": "f95api",
|
2021-01-09 20:08:00 +00:00
|
|
|
"version": "1.9.9",
|
2020-11-22 14:22:21 +00:00
|
|
|
"author": "Millennium Earl",
|
2020-09-29 15:11:43 +00:00
|
|
|
"description": "Unofficial Node JS module for scraping F95Zone platform",
|
2021-03-08 11:16:15 +00:00
|
|
|
"types": "dist/index.d.ts",
|
2020-10-02 12:01:51 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-11-22 14:22:21 +00:00
|
|
|
"url": "git+https://github.com/MillenniumEarl/F95API.git"
|
2020-10-02 12:01:51 +00:00
|
|
|
},
|
2020-11-12 10:42:08 +00:00
|
|
|
"license": "MIT",
|
2020-09-29 15:11:43 +00:00
|
|
|
"keywords": [
|
2020-10-08 19:15:05 +00:00
|
|
|
"f95",
|
2020-09-29 15:11:43 +00:00
|
|
|
"f95zone",
|
|
|
|
"api",
|
|
|
|
"scraping",
|
|
|
|
"login",
|
|
|
|
"game",
|
2020-11-02 14:06:09 +00:00
|
|
|
"games",
|
|
|
|
"data",
|
|
|
|
"userdata",
|
|
|
|
"user data"
|
2020-09-29 15:11:43 +00:00
|
|
|
],
|
2020-10-08 19:15:05 +00:00
|
|
|
"scripts": {
|
2021-03-04 11:26:32 +00:00
|
|
|
"lint": "eslint . --ext .ts",
|
2021-03-08 11:40:01 +00:00
|
|
|
"prettier-format": "prettier --config .prettierrc '{src,test}/**/*.ts' --write",
|
|
|
|
"compile": "tsc",
|
2021-03-08 19:56:50 +00:00
|
|
|
"test": "nyc --reporter=text mocha --require ts-node/register test/index.ts",
|
|
|
|
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov -t 38ad72bf-a29d-4c2e-9827-96cbe037afd2",
|
2021-02-20 17:24:47 +00:00
|
|
|
"publish": "npm publish",
|
2021-03-08 11:40:01 +00:00
|
|
|
"run-example": "npm run compile && node ./dist/example.js"
|
2020-10-08 19:15:05 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=10.0"
|
|
|
|
},
|
2020-09-29 15:30:33 +00:00
|
|
|
"dependencies": {
|
2021-03-05 11:35:23 +00:00
|
|
|
"axios": "^0.21.1",
|
2020-11-01 13:56:07 +00:00
|
|
|
"axios-cookiejar-support": "^1.0.1",
|
2021-03-05 11:35:23 +00:00
|
|
|
"cheerio": "^1.0.0-rc.5",
|
2021-02-14 11:25:33 +00:00
|
|
|
"class-validator": "^0.13.1",
|
2021-03-04 11:05:42 +00:00
|
|
|
"js-sha256": "^0.9.0",
|
2020-11-01 13:56:07 +00:00
|
|
|
"log4js": "^6.3.0",
|
2021-03-05 11:35:23 +00:00
|
|
|
"luxon": "^1.26.0",
|
2021-02-13 15:08:22 +00:00
|
|
|
"tough-cookie": "^4.0.0"
|
2020-09-29 15:30:33 +00:00
|
|
|
},
|
2020-09-29 15:11:43 +00:00
|
|
|
"devDependencies": {
|
2021-03-08 10:51:19 +00:00
|
|
|
"@types/chai": "^4.2.15",
|
2021-03-10 08:34:58 +00:00
|
|
|
"@types/chai-as-promised": "^7.1.3",
|
2021-03-05 09:56:59 +00:00
|
|
|
"@types/inquirer": "^7.3.1",
|
2021-02-15 20:28:08 +00:00
|
|
|
"@types/luxon": "^1.25.2",
|
2021-03-08 10:51:19 +00:00
|
|
|
"@types/mocha": "^8.2.1",
|
2021-02-13 15:08:22 +00:00
|
|
|
"@types/node": "^14.14.27",
|
2021-02-14 11:25:33 +00:00
|
|
|
"@types/tough-cookie": "^4.0.0",
|
2021-02-13 15:08:22 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.15.0",
|
|
|
|
"@typescript-eslint/parser": "^4.15.0",
|
2021-03-08 10:51:19 +00:00
|
|
|
"chai": "^4.3.3",
|
2021-03-10 08:34:58 +00:00
|
|
|
"chai-as-promised": "^7.1.1",
|
2020-10-12 12:11:36 +00:00
|
|
|
"dotenv": "^8.2.0",
|
2021-03-05 11:35:23 +00:00
|
|
|
"eslint": "^7.21.0",
|
2021-03-04 11:26:32 +00:00
|
|
|
"eslint-config-prettier": "^8.1.0",
|
|
|
|
"eslint-plugin-prettier": "^3.3.1",
|
2021-03-04 11:34:00 +00:00
|
|
|
"husky": "^5.1.3",
|
2021-03-05 09:56:59 +00:00
|
|
|
"inquirer": "^8.0.0",
|
2021-03-04 11:34:00 +00:00
|
|
|
"lint-staged": "^10.5.4",
|
2021-03-08 10:51:19 +00:00
|
|
|
"mocha": "^8.3.1",
|
2021-03-08 19:56:50 +00:00
|
|
|
"nyc": "^15.1.0",
|
2021-03-04 11:26:32 +00:00
|
|
|
"prettier": "^2.2.1",
|
2021-03-08 10:51:19 +00:00
|
|
|
"ts-node": "^9.1.1",
|
|
|
|
"typescript": "^4.2.3"
|
2020-11-22 14:22:21 +00:00
|
|
|
},
|
2021-03-04 11:34:00 +00:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
2021-03-04 15:04:05 +00:00
|
|
|
"*.js": [
|
|
|
|
"prettier --write",
|
|
|
|
"git add"
|
|
|
|
]
|
2021-03-04 11:34:00 +00:00
|
|
|
},
|
2020-11-22 14:22:21 +00:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/MillenniumEarl/F95API/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/MillenniumEarl/F95API#readme"
|
2020-09-29 15:11:43 +00:00
|
|
|
}
|