octopus-web-crawler
Version:
Another web crawler.
61 lines (60 loc) • 1.29 kB
JSON
{
"name": "octopus-web-crawler",
"version": "1.1.0",
"description": "Another web crawler.",
"author": "Chema Garcia <chemagares@gmail.com>",
"license": "MIT",
"keywords": [
"node",
"nodejs",
"web",
"html",
"spider",
"crawler",
"web-crawler",
"scrapper",
"data",
"mining"
],
"repository": {
"type": "git",
"url": "https://github.com/chemagares/octopus-web-crawler"
},
"bugs": {
"url": "https://github.com/chemagares/octopus-web-crawler/issues",
"email": "chemagares@gmail.com"
},
"main": "dist/crawler.js",
"types": "dist/index.d.ts",
"scripts": {
"compile": "tsc",
"compile:watch": "tsc -w",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"jest": "^27.1.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
},
"prepublish": "tsc",
"jest": {
"testEnvironment": "node",
"modulePaths": [
"src/"
],
"testPathIgnorePatterns": [],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"preset": "ts-jest",
"transform": {
"node_modules/variables/.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!variables/.*)"
]
}
}