package.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. {
  2. "_args": [
  3. [
  4. "css-select@4.3.0",
  5. "F:\\cocorobo\\CocoRoboDesktop\\node"
  6. ]
  7. ],
  8. "_from": "css-select@4.3.0",
  9. "_id": "css-select@4.3.0",
  10. "_inBundle": false,
  11. "_integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==",
  12. "_location": "/css-select",
  13. "_phantomChildren": {},
  14. "_requested": {
  15. "type": "version",
  16. "registry": true,
  17. "raw": "css-select@4.3.0",
  18. "name": "css-select",
  19. "escapedName": "css-select",
  20. "rawSpec": "4.3.0",
  21. "saveSpec": null,
  22. "fetchSpec": "4.3.0"
  23. },
  24. "_requiredBy": [
  25. "/cheerio-select"
  26. ],
  27. "_resolved": "https://registry.npmmirror.com/css-select/-/css-select-4.3.0.tgz",
  28. "_spec": "4.3.0",
  29. "_where": "F:\\cocorobo\\CocoRoboDesktop\\node",
  30. "author": {
  31. "name": "Felix Boehm",
  32. "email": "me@feedic.com"
  33. },
  34. "bugs": {
  35. "url": "https://github.com/fb55/css-select/issues"
  36. },
  37. "dependencies": {
  38. "boolbase": "^1.0.0",
  39. "css-what": "^6.0.1",
  40. "domhandler": "^4.3.1",
  41. "domutils": "^2.8.0",
  42. "nth-check": "^2.0.1"
  43. },
  44. "description": "a CSS selector compiler/engine",
  45. "devDependencies": {
  46. "@types/boolbase": "^1.0.1",
  47. "@types/jest": "^27.4.1",
  48. "@types/node": "^17.0.23",
  49. "@typescript-eslint/eslint-plugin": "^5.16.0",
  50. "@typescript-eslint/parser": "^5.16.0",
  51. "cheerio-soupselect": "^0.1.1",
  52. "eslint": "^8.12.0",
  53. "eslint-config-prettier": "^8.5.0",
  54. "htmlparser2": "^7.2.0",
  55. "jest": "^27.5.1",
  56. "prettier": "^2.6.1",
  57. "ts-jest": "^27.1.4",
  58. "typescript": "^4.6.3"
  59. },
  60. "files": [
  61. "lib"
  62. ],
  63. "funding": {
  64. "url": "https://github.com/sponsors/fb55"
  65. },
  66. "homepage": "https://github.com/fb55/css-select#readme",
  67. "jest": {
  68. "preset": "ts-jest",
  69. "testEnvironment": "node",
  70. "testMatch": [
  71. "<rootDir>/test/*.ts"
  72. ]
  73. },
  74. "keywords": [
  75. "css",
  76. "selector",
  77. "sizzle"
  78. ],
  79. "license": "BSD-2-Clause",
  80. "main": "lib/index.js",
  81. "name": "css-select",
  82. "prettier": {
  83. "tabWidth": 4,
  84. "proseWrap": "always"
  85. },
  86. "repository": {
  87. "type": "git",
  88. "url": "git://github.com/fb55/css-select.git"
  89. },
  90. "scripts": {
  91. "build": "tsc",
  92. "format": "npm run format:es && npm run format:prettier",
  93. "format:es": "npm run lint:es -- --fix",
  94. "format:prettier": "npm run prettier -- --write",
  95. "lint": "npm run lint:es && npm run lint:prettier",
  96. "lint:es": "eslint src",
  97. "lint:prettier": "npm run prettier -- --check",
  98. "prepare": "npm run build",
  99. "prettier": "prettier '**/*.{ts,md,json,yml}'",
  100. "test": "npm run test:jest && npm run lint",
  101. "test:jest": "jest"
  102. },
  103. "types": "lib/index.d.ts",
  104. "version": "4.3.0"
  105. }