UNPKG

nyaasiscrapper

Version:
57 lines (56 loc) 1.78 kB
{ "name": "nyaasiscrapper", "version": "1.1.0", "description": "A light scrapper for nyaasi", "main": "./lib/index.js", "types": "./lib/index.d.ts", "scripts": { "test": "jest --config jestconfig.json --runInBand", "start": "node --inspect=5858 -r ./node_modules/ts-node/register ./src/index.ts", "start:watch": "nodemon --exec 'node --inspect=5858 --require ts-node/register ./src/index.ts' -L -e ts,json,js", "start:test": "nodemon --exec 'node --inspect=5858 --require ts-node/register ./src/__tests__/fileTest.ts' -L -e ts,json,js", "build": "./node_modules/.bin/tsc", "prepare": "npm run build", "lint": "./node_modules/.bin/eslint", "prepublishOnly": "npm test && npm run lint", "preversion": "npm run lint", "postversion": "git push && git push --tags", "version": "npm run format && git add -A src" }, "files": [ "lib/**/*" ], "repository": { "type": "git", "url": "git+https://github.com/lotrez/nyaasiscrapper.git" }, "keywords": [ "nyaa.si", "scrapper", "api", "anime" ], "author": "Lotrez", "license": "ISC", "bugs": { "url": "https://github.com/lotrez/nyaasiscrapper/issues" }, "homepage": "https://github.com/lotrez/nyaasiscrapper#readme", "devDependencies": { "@types/jest": "^26.0.3", "@typescript-eslint/eslint-plugin": "^3.5.0", "@typescript-eslint/parser": "^3.5.0", "eslint": "^7.3.1", "jest": "^26.1.0", "ts-jest": "^26.1.1", "typescript": "^3.9.5" }, "dependencies": { "@types/node": "^14.0.14", "fast-xml-parser": "^3.17.4", "node-fetch": "^2.6.0", "node-html-parser": "^1.2.20", "nodemon": "^2.0.4", "ts-node": "^8.10.2" } }