89 lines
2.3 KiB
JSON
89 lines
2.3 KiB
JSON
{
|
|
"main": "./src/index.ts",
|
|
"name": "f95api",
|
|
"version": "1.9.9",
|
|
"author": "Millennium Earl",
|
|
"description": "Unofficial Node JS module for scraping F95Zone platform",
|
|
"types": "dist/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": {
|
|
"lint": "eslint . --ext .ts",
|
|
"prettier-format": "prettier --config .prettierrc '{src,test}/**/*.ts' --write",
|
|
"compile": "tsc",
|
|
"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",
|
|
"publish": "npm publish",
|
|
"run-example": "npm run compile && node ./dist/example.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.0"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.21.1",
|
|
"axios-cookiejar-support": "^1.0.1",
|
|
"cheerio": "^1.0.0-rc.5",
|
|
"class-validator": "^0.13.1",
|
|
"js-sha256": "^0.9.0",
|
|
"log4js": "^6.3.0",
|
|
"luxon": "^1.26.0",
|
|
"tough-cookie": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.15",
|
|
"@types/chai-as-promised": "^7.1.3",
|
|
"@types/inquirer": "^7.3.1",
|
|
"@types/lodash": "^4.14.168",
|
|
"@types/luxon": "^1.25.2",
|
|
"@types/mocha": "^8.2.1",
|
|
"@types/node": "^14.14.27",
|
|
"@types/tough-cookie": "^4.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.15.0",
|
|
"@typescript-eslint/parser": "^4.15.0",
|
|
"chai": "^4.3.3",
|
|
"chai-as-promised": "^7.1.1",
|
|
"dotenv": "^8.2.0",
|
|
"eslint": "^7.21.0",
|
|
"eslint-config-prettier": "^8.1.0",
|
|
"eslint-plugin-prettier": "^3.3.1",
|
|
"husky": "^5.1.3",
|
|
"inquirer": "^8.0.0",
|
|
"lint-staged": "^10.5.4",
|
|
"mocha": "^8.3.1",
|
|
"nyc": "^15.1.0",
|
|
"prettier": "^2.2.1",
|
|
"ts-node": "^9.1.1",
|
|
"typescript": "^4.2.3"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/MillenniumEarl/F95API/issues"
|
|
},
|
|
"homepage": "https://github.com/MillenniumEarl/F95API#readme"
|
|
}
|