You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. {
  2. "_from": "cheerio",
  3. "_id": "cheerio@1.0.0-rc.10",
  4. "_inBundle": false,
  5. "_integrity": "sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==",
  6. "_location": "/cheerio",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "tag",
  10. "registry": true,
  11. "raw": "cheerio",
  12. "name": "cheerio",
  13. "escapedName": "cheerio",
  14. "rawSpec": "",
  15. "saveSpec": null,
  16. "fetchSpec": "latest"
  17. },
  18. "_requiredBy": [
  19. "#USER",
  20. "/"
  21. ],
  22. "_resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.10.tgz",
  23. "_shasum": "2ba3dcdfcc26e7956fc1f440e61d51c643379f3e",
  24. "_spec": "cheerio",
  25. "_where": "D:\\diligent\\projects\\scrapper",
  26. "author": {
  27. "name": "Matt Mueller",
  28. "email": "mattmuelle@gmail.com"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/cheeriojs/cheerio/issues"
  32. },
  33. "bundleDependencies": false,
  34. "dependencies": {
  35. "cheerio-select": "^1.5.0",
  36. "dom-serializer": "^1.3.2",
  37. "domhandler": "^4.2.0",
  38. "htmlparser2": "^6.1.0",
  39. "parse5": "^6.0.1",
  40. "parse5-htmlparser2-tree-adapter": "^6.0.1",
  41. "tslib": "^2.2.0"
  42. },
  43. "deprecated": false,
  44. "description": "Tiny, fast, and elegant implementation of core jQuery designed specifically for the server",
  45. "devDependencies": {
  46. "@octokit/graphql": "^4.6.2",
  47. "@types/benchmark": "^2.1.0",
  48. "@types/jest": "^26.0.23",
  49. "@types/jsdom": "^16.2.10",
  50. "@types/node": "^15.12.1",
  51. "@types/node-fetch": "^2.5.10",
  52. "@types/parse5": "^6.0.0",
  53. "@types/parse5-htmlparser2-tree-adapter": "^6.0.0",
  54. "@typescript-eslint/eslint-plugin": "^4.26.0",
  55. "@typescript-eslint/parser": "^4.26.0",
  56. "benchmark": "^2.1.4",
  57. "eslint": "^7.28.0",
  58. "eslint-config-prettier": "^8.3.0",
  59. "eslint-plugin-jest": "^24.3.6",
  60. "eslint-plugin-jsdoc": "^35.1.3",
  61. "eslint-plugin-node": "^11.1.0",
  62. "husky": "^4.3.8",
  63. "jest": "^27.0.4",
  64. "jquery": "^3.6.0",
  65. "jsdom": "^16.6.0",
  66. "lint-staged": "^11.0.0",
  67. "node-fetch": "^2.6.1",
  68. "prettier": "^2.3.1",
  69. "prettier-plugin-jsdoc": "0.3.22",
  70. "ts-jest": "^27.0.3",
  71. "ts-node": "^10.0.0",
  72. "typedoc": "^0.20.36",
  73. "typescript": "^4.2.4"
  74. },
  75. "engines": {
  76. "node": ">= 6"
  77. },
  78. "files": [
  79. "lib"
  80. ],
  81. "funding": "https://github.com/cheeriojs/cheerio?sponsor=1",
  82. "homepage": "https://cheerio.js.org/",
  83. "jest": {
  84. "preset": "ts-jest",
  85. "testEnvironment": "node",
  86. "testPathIgnorePatterns": [
  87. "/__fixtures__/"
  88. ]
  89. },
  90. "keywords": [
  91. "htmlparser",
  92. "jquery",
  93. "selector",
  94. "scraper",
  95. "parser",
  96. "html"
  97. ],
  98. "license": "MIT",
  99. "lint-staged": {
  100. "*.js": [
  101. "prettier --write",
  102. "npm run test:lint -- --fix"
  103. ],
  104. "*.{json,md,ts,yml}": [
  105. "prettier --write"
  106. ]
  107. },
  108. "main": "lib/index.js",
  109. "maintainers": [
  110. {
  111. "name": "Felix Boehm",
  112. "email": "me@feedic.com"
  113. }
  114. ],
  115. "name": "cheerio",
  116. "prettier": {
  117. "singleQuote": true,
  118. "tabWidth": 2,
  119. "tsdoc": true
  120. },
  121. "repository": {
  122. "type": "git",
  123. "url": "git://github.com/cheeriojs/cheerio.git"
  124. },
  125. "scripts": {
  126. "bench": "npm run benchmark",
  127. "benchmark": "ts-node benchmark/benchmark.ts --regex \"^(?!.*highmem)\"",
  128. "build": "tsc",
  129. "build:docs": "typedoc --hideGenerator src/index.ts",
  130. "format": "npm run format:es && npm run format:prettier",
  131. "format:es": "npm run lint:es -- --fix",
  132. "format:prettier": "npm run format:prettier:raw -- --write",
  133. "format:prettier:raw": "prettier \"**/*.{js,ts,md,json,yml}\" --ignore-path .gitignore",
  134. "lint": "npm run lint:es && npm run lint:prettier",
  135. "lint:es": "eslint --ignore-path .gitignore .",
  136. "lint:prettier": "npm run format:prettier:raw -- --check",
  137. "pre-commit": "lint-staged",
  138. "prepublishOnly": "npm run build",
  139. "test": "npm run lint && npm run test:jest",
  140. "test:jest": "jest",
  141. "test:jest:cov": "npm run test:jest -- --coverage",
  142. "update-sponsors": "ts-node scripts/fetch-sponsors.ts"
  143. },
  144. "types": "lib/index.d.ts",
  145. "version": "1.0.0-rc.10"
  146. }