robots-parse
Version:
A lightweight and simple robots.txt parser in node.
51 lines (50 loc) • 1.07 kB
JSON
{
"name": "robots-parse",
"version": "0.0.6",
"description": "A lightweight and simple robots.txt parser in node.",
"homepage": "https://github.com/b4dnewz/robots-parse",
"author": {
"name": "b4dnewz",
"email": "filippo@codekraft.it",
"url": "https://b4dnewz.github.io/"
},
"files": [
"lib"
],
"main": "lib/index.js",
"license": "Apache-2.0",
"keywords": [
"cli-tool",
"parser",
"osint"
],
"dependencies": {
"follow-redirects": "^1.7.0"
},
"devDependencies": {
"coveralls": "^3.0.3",
"eslint": "^5.15.1",
"jest": "^24.1.0",
"jest-cli": "^24.1.0"
},
"scripts": {
"pretest": "npm run lint",
"lint": "eslint . --fix",
"test": "jest --coverage"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"es6": true,
"jest": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6
}
},
"repository": "b4dnewz/robots-parse",
"jest": {
"testEnvironment": "node"
}
}