sqrap
Version:
sqrap is a configurable web scraper that can map information from a website using a json schema.
52 lines (51 loc) • 1.35 kB
JSON
{
"name": "sqrap",
"version": "1.2.0",
"description": "sqrap is a configurable web scraper that can map information from a website using a json schema.",
"main": "index.js",
"scripts": {
"format": "prettier --single-quote --write index.js",
"lint": "eslint --ext .js index.js",
"precommit": "lint-staged & npm test",
"test": "jest --verbose --coverage && codecov"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/dinostheo/sqrap.git"
},
"keywords": [
"web-scraper",
"scraper",
"scrapping",
"website",
"json"
],
"author": "Dinos Theodorou <dinostheo@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dinostheo/sqrap/issues"
},
"homepage": "https://github.com/dinostheo/sqrap#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"request": "^2.88.0"
},
"devDependencies": {
"codecov": "^3.1.0",
"editorconfig": "^0.15.2",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"nock": "^10.0.6",
"prettier": "^1.15.3"
}
}