107 lines
2.9 KiB
JSON
107 lines
2.9 KiB
JSON
{
|
|
"name": "generate-robotstxt",
|
|
"version": "8.0.3",
|
|
"description": "Awesome generator robots.txt",
|
|
"author": "itgalaxy <development@itgalaxy.company>",
|
|
"contributors": [
|
|
{
|
|
"name": "Alexander Krasnoyarov",
|
|
"email": "alexander.krasnoyarov@itgalaxy.company",
|
|
"url": "https://vk.com/sterling_archer"
|
|
}
|
|
],
|
|
"repository": {
|
|
"type": "https",
|
|
"url": "https://github.com/itgalaxy/generate-robotstxt"
|
|
},
|
|
"keywords": [
|
|
"robotstxt",
|
|
"robots.txt",
|
|
"generate",
|
|
"robots-txt",
|
|
"user-agent",
|
|
"police",
|
|
"allow",
|
|
"disallow",
|
|
"crawl-delay",
|
|
"robot",
|
|
"robots"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/itgalaxy/generate-robotstxt/issues"
|
|
},
|
|
"main": "dist/index.js",
|
|
"bin": "dist/cli.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">= 10.13.0"
|
|
},
|
|
"dependencies": {
|
|
"cosmiconfig": "^6.0.0",
|
|
"fs-extra": "^9.0.0",
|
|
"ip-regex": "^4.1.0",
|
|
"is-absolute-url": "^3.0.3",
|
|
"meow": "^7.0.1",
|
|
"resolve-from": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.8.4",
|
|
"@babel/core": "^7.9.6",
|
|
"@babel/preset-env": "^7.9.6",
|
|
"babel-eslint": "^10.1.0",
|
|
"babel-jest": "^26.0.1",
|
|
"babel-plugin-add-module-exports": "^1.0.2",
|
|
"eslint": "^7.0.0",
|
|
"eslint-plugin-ava": "^10.3.0",
|
|
"eslint-plugin-html": "^6.0.2",
|
|
"eslint-plugin-import": "^2.20.2",
|
|
"eslint-plugin-itgalaxy": "^126.0.0",
|
|
"eslint-plugin-jest": "^23.10.0",
|
|
"eslint-plugin-jsx-a11y": "^6.2.3",
|
|
"eslint-plugin-lodash": "^7.1.0",
|
|
"eslint-plugin-markdown": "^1.0.2",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-react": "^7.19.0",
|
|
"eslint-plugin-unicorn": "^19.0.1",
|
|
"execa": "^4.0.1",
|
|
"husky": "^4.2.5",
|
|
"jest": "^26.0.1",
|
|
"lint-staged": "^10.2.2",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^2.0.5",
|
|
"remark-cli": "^8.0.0",
|
|
"remark-preset-lint-itgalaxy": "^15.0.0",
|
|
"rimraf": "^3.0.2",
|
|
"standard-version": "^8.0.0",
|
|
"tempfile": "^3.0.0"
|
|
},
|
|
"scripts": {
|
|
"prebuild": "rimraf dist",
|
|
"build": "babel src --out-dir dist --ignore /__tests__/",
|
|
"lint:prettier": "prettier --list-different '{src,__tests__}/**/*.{js,mjs,jsx,md,yml,yaml}' '*.{js,mjs,md,yml,yaml}' '!CHANGELOG.md'",
|
|
"lint:js": "eslint . --cache --report-unused-disable-directives --ignore-path .gitignore --ext '.js,.mjs,.jsx,md'",
|
|
"lint:md": "remark . -i .gitignore -f -q",
|
|
"lint": "npm-run-all -l -p 'lint:**'",
|
|
"prettier": "npm run lint:prettier -- --write",
|
|
"fix:js": "npm run lint:js -- --fix",
|
|
"fix": "npm-run-all -l prettier -p \"fix:**\"",
|
|
"pretest": "npm run lint",
|
|
"test:only": "jest",
|
|
"test:coverage": "jest --coverage",
|
|
"test": "npm run test:only",
|
|
"prepare": "npm run build",
|
|
"release": "standard-version"
|
|
},
|
|
"jest": {
|
|
"testPathIgnorePatterns": [
|
|
"/node_modules/",
|
|
"/fixtures/",
|
|
"helpers.js"
|
|
]
|
|
}
|
|
}
|