UNPKG

@carbondigital/robots-parser

Version:
140 lines (139 loc) 3.72 kB
{ "name": "@carbondigital/robots-parser", "version": "0.0.13", "description": "Robots parser that is used in our SEO application.", "author": { "name": "Carbon Digital", "email": "hello@carbondigital.us", "url": "https://carbondigital.us/" }, "license": "GNU", "repository": { "type": "git", "url": "git+https://github.com/carbondigitalus/semlinks-robots-parser.git" }, "homepage": "https://github.com/carbondigitalus/semlinks-robots-parser#readme", "bugs": { "url": "https://github.com/carbondigitalus/semlinks-robots-parser/issues" }, "main": "./lib/index.js", "files": [ "lib/**/*" ], "scripts": { "build": "tsc --project tsconfig.build.json", "clean": "rm -rf ./lib/", "cm": "cz", "lint": "eslint ./src/ --fix", "npm:publish": "npm run clean && npm run build && npm publish --access public", "prepare": "husky install", "semantic-release": "semantic-release", "start:dev": "nodemon -L ./src/index.ts && tsc -w", "test:watch": "jest --watch", "test": "jest --coverage", "typecheck": "tsc --noEmit" }, "devDependencies": { "@ryansonshine/commitizen": "^4.2.8", "@ryansonshine/cz-conventional-changelog": "^3.3.4", "@semantic-release/git": "^10.0.1", "@swc/core": "^1.3.9", "@swc/helpers": "^0.4.12", "@types/jest": "^29.1.2", "@types/node": "^18.11.0", "@typescript-eslint/eslint-plugin": "^5.40.1", "@typescript-eslint/parser": "^5.40.0", "conventional-changelog-conventionalcommits": "^5.0.0", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", "eslint-config-standard-with-typescript": "^23.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-n": "^15.3.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-promise": "^6.1.0", "husky": "^8.0.1", "jest": "^29.2.0", "lint-staged": "^13.0.3", "prettier": "^2.7.1", "regenerator-runtime": "^0.13.10", "semantic-release": "^19.0.5", "ts-jest": "^29.0.3", "ts-node": "^10.9.1", "typescript": "^4.8.4" }, "config": { "commitizen": { "path": "./node_modules/@ryansonshine/cz-conventional-changelog" } }, "engines": { "node": ">=16.14.0" }, "lint-staged": { "*.ts": "eslint --cache --cache-location .eslintcache --fix" }, "keywords": [ "seo", "robots", "parser", "typescript", "node", "sem", "links" ], "release": { "branches": [ "main" ], "plugins": [ [ "@semantic-release/commit-analyzer", { "preset": "conventionalcommits", "releaseRules": [ { "type": "build", "scope": "deps", "release": "patch" } ] } ], [ "@semantic-release/release-notes-generator", { "preset": "conventionalcommits", "presetConfig": { "types": [ { "type": "feat", "section": "Features" }, { "type": "fix", "section": "Bug Fixes" }, { "type": "build", "section": "Dependencies and Other Build Updates", "hidden": false } ] } } ], "@semantic-release/npm", [ "@semantic-release/git", { "assets": [ "package.json" ], "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" } ], "@semantic-release/github" ] } }