package.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. {
  2. "_from": "regexpp@^3.0.0",
  3. "_id": "regexpp@3.2.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==",
  6. "_location": "/regexpp",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "regexpp@^3.0.0",
  12. "name": "regexpp",
  13. "escapedName": "regexpp",
  14. "rawSpec": "^3.0.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^3.0.0"
  17. },
  18. "_requiredBy": [
  19. "/eslint-plugin-es"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz",
  22. "_shasum": "0425a2768d8f23bad70ca4b90461fa2f1213e1b2",
  23. "_spec": "regexpp@^3.0.0",
  24. "_where": "H:\\gs_nuxt\\node_modules\\eslint-plugin-es",
  25. "author": {
  26. "name": "Toru Nagashima",
  27. "url": "https://github.com/mysticatea"
  28. },
  29. "bugs": {
  30. "url": "https://github.com/mysticatea/regexpp/issues"
  31. },
  32. "bundleDependencies": false,
  33. "dependencies": {},
  34. "deprecated": false,
  35. "description": "Regular expression parser for ECMAScript.",
  36. "devDependencies": {
  37. "@mysticatea/eslint-plugin": "^11.0.0",
  38. "@types/eslint": "^4.16.2",
  39. "@types/jsdom": "^12.2.4",
  40. "@types/mocha": "^5.2.2",
  41. "@types/node": "^12.6.8",
  42. "codecov": "^3.5.0",
  43. "dts-bundle": "^0.7.3",
  44. "eslint": "^6.1.0",
  45. "jsdom": "^15.1.1",
  46. "mocha": "^6.2.0",
  47. "npm-run-all": "^4.1.5",
  48. "nyc": "^14.1.1",
  49. "rimraf": "^2.6.2",
  50. "rollup": "^1.17.0",
  51. "rollup-plugin-node-resolve": "^5.2.0",
  52. "rollup-plugin-sourcemaps": "^0.4.2",
  53. "ts-node": "^8.3.0",
  54. "typescript": "^3.5.3"
  55. },
  56. "engines": {
  57. "node": ">=8"
  58. },
  59. "exports": {
  60. ".": {
  61. "import": "./index.mjs",
  62. "default": "./index.js"
  63. },
  64. "./package.json": "./package.json"
  65. },
  66. "files": [
  67. "index.*"
  68. ],
  69. "funding": "https://github.com/sponsors/mysticatea",
  70. "homepage": "https://github.com/mysticatea/regexpp#readme",
  71. "keywords": [
  72. "regexp",
  73. "regular",
  74. "expression",
  75. "parser",
  76. "validator",
  77. "ast",
  78. "abstract",
  79. "syntax",
  80. "tree",
  81. "ecmascript",
  82. "es2015",
  83. "es2016",
  84. "es2017",
  85. "es2018",
  86. "es2019",
  87. "es2020",
  88. "annexB"
  89. ],
  90. "license": "MIT",
  91. "main": "index",
  92. "name": "regexpp",
  93. "repository": {
  94. "type": "git",
  95. "url": "git+https://github.com/mysticatea/regexpp.git"
  96. },
  97. "scripts": {
  98. "build": "run-s build:*",
  99. "build:dts": "dts-bundle --name regexpp --main .temp/index.d.ts --out ../index.d.ts",
  100. "build:rollup": "rollup -c",
  101. "build:tsc": "tsc --module es2015",
  102. "clean": "rimraf .temp index.*",
  103. "codecov": "nyc report -r lcovonly && codecov -t ${CODECOV_TOKEN} --disable=gcov",
  104. "lint": "eslint scripts src test --ext .ts",
  105. "postversion": "git push && git push --tags",
  106. "prebuild": "npm run -s clean",
  107. "pretest": "run-s build lint",
  108. "preversion": "npm test",
  109. "prewatch": "npm run -s clean",
  110. "test": "nyc _mocha \"test/*.ts\" --reporter dot --timeout 10000",
  111. "update:test": "ts-node scripts/update-fixtures.ts",
  112. "update:unicode": "run-s update:unicode:*",
  113. "update:unicode:ids": "ts-node scripts/update-unicode-ids.ts",
  114. "update:unicode:props": "ts-node scripts/update-unicode-properties.ts",
  115. "version": "npm run -s build",
  116. "watch": "_mocha \"test/*.ts\" --require ts-node/register --reporter dot --timeout 10000 --watch-extensions ts --watch --growl"
  117. },
  118. "version": "3.2.0"
  119. }