package.json 2.6 KB

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