package.json 3.3 KB

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