版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

88 строки
2.5 KiB

  1. {
  2. "name": "@eslint-community/regexpp",
  3. "version": "4.5.0",
  4. "description": "Regular expression parser for ECMAScript.",
  5. "keywords": [
  6. "regexp",
  7. "regular",
  8. "expression",
  9. "parser",
  10. "validator",
  11. "ast",
  12. "abstract",
  13. "syntax",
  14. "tree",
  15. "ecmascript",
  16. "es2015",
  17. "es2016",
  18. "es2017",
  19. "es2018",
  20. "es2019",
  21. "es2020",
  22. "es2021",
  23. "annexB"
  24. ],
  25. "homepage": "https://github.com/eslint-community/regexpp#readme",
  26. "bugs": {
  27. "url": "https://github.com/eslint-community/regexpp/issues"
  28. },
  29. "repository": {
  30. "type": "git",
  31. "url": "https://github.com/eslint-community/regexpp"
  32. },
  33. "license": "MIT",
  34. "author": "Toru Nagashima",
  35. "exports": {
  36. ".": {
  37. "import": "./index.mjs",
  38. "default": "./index.js"
  39. },
  40. "./package.json": "./package.json"
  41. },
  42. "main": "index",
  43. "files": [
  44. "index.*"
  45. ],
  46. "scripts": {
  47. "prebuild": "npm run -s clean",
  48. "build": "run-s build:*",
  49. "build:tsc": "tsc --module es2015",
  50. "build:rollup": "rollup -c",
  51. "build:dts": "npm run -s build:tsc -- --removeComments false && dts-bundle --name @eslint-community/regexpp --main .temp/index.d.ts --out ../index.d.ts && prettier --write index.d.ts",
  52. "clean": "rimraf .temp index.*",
  53. "lint": "eslint . --ext .ts",
  54. "test": "nyc _mocha \"test/*.ts\" --reporter dot --timeout 10000",
  55. "update:test": "ts-node scripts/update-fixtures.ts",
  56. "update:unicode": "run-s update:unicode:*",
  57. "update:unicode:ids": "ts-node scripts/update-unicode-ids.ts",
  58. "update:unicode:props": "ts-node scripts/update-unicode-properties.ts",
  59. "preversion": "npm test && npm run -s build",
  60. "postversion": "git push && git push --tags",
  61. "prewatch": "npm run -s clean",
  62. "watch": "_mocha \"test/*.ts\" --require ts-node/register --reporter dot --timeout 10000 --watch-extensions ts --watch --growl"
  63. },
  64. "dependencies": {},
  65. "devDependencies": {
  66. "@eslint-community/eslint-plugin-mysticatea": "^15.3.0",
  67. "@rollup/plugin-node-resolve": "^14.1.0",
  68. "@types/eslint": "^8.4.10",
  69. "@types/jsdom": "^16.2.15",
  70. "@types/mocha": "^9.1.1",
  71. "@types/node": "^12.20.55",
  72. "dts-bundle": "^0.7.3",
  73. "eslint": "^8.31.0",
  74. "jsdom": "^19.0.0",
  75. "mocha": "^9.2.2",
  76. "npm-run-all": "^4.1.5",
  77. "nyc": "^14.1.1",
  78. "rimraf": "^3.0.2",
  79. "rollup": "^2.79.1",
  80. "rollup-plugin-sourcemaps": "^0.6.3",
  81. "ts-node": "^10.9.1",
  82. "typescript": "~5.0.2"
  83. },
  84. "engines": {
  85. "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
  86. }
  87. }