F95API/package.json

40 lines
798 B
JSON
Raw Normal View History

2020-09-29 15:11:43 +00:00
{
"name": "f95api",
"version": "1.0.0",
"description": "Unofficial Node JS module for scraping F95Zone platform",
2020-09-29 15:30:33 +00:00
"main": "./app/index.js",
"repository": {
"type": "git",
"url": "https://github.com/MillenniumEarl/F95API.git"
},
"license": "UNLICENSED",
"private": true,
2020-10-02 14:46:09 +00:00
"engines": {
2020-10-02 15:51:04 +00:00
"node": ">=10.0"
2020-10-02 14:46:09 +00:00
},
2020-09-29 15:11:43 +00:00
"scripts": {
"unit-test": "nyc --reporter=text mocha",
"test": "node ./app/test.js",
"deploy": "npm pack"
2020-09-29 15:11:43 +00:00
},
"keywords": [
"f95zone",
"api",
"scraping",
"login",
"game",
"games"
],
"author": "MillenniumEarl",
2020-09-29 15:30:33 +00:00
"dependencies": {
"node-html-parser": "^1.2.21",
"puppeteer": "^5.3.1",
"url-exist": "^2.0.2"
},
2020-09-29 15:11:43 +00:00
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0"
2020-09-29 15:11:43 +00:00
}
}