package.json 3.2 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. "/eslint"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz",
  22. "_shasum": "206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2",
  23. "_spec": "regexpp@^3.1.0",
  24. "_where": "/home/girishm/Projects/op-mattermost-plugin/node_modules/eslint",
  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. "files": [
  60. "index.*"
  61. ],
  62. "funding": "https://github.com/sponsors/mysticatea",
  63. "homepage": "https://github.com/mysticatea/regexpp#readme",
  64. "keywords": [
  65. "regexp",
  66. "regular",
  67. "expression",
  68. "parser",
  69. "validator",
  70. "ast",
  71. "abstract",
  72. "syntax",
  73. "tree",
  74. "ecmascript",
  75. "es2015",
  76. "es2016",
  77. "es2017",
  78. "es2018",
  79. "es2019",
  80. "es2020",
  81. "annexB"
  82. ],
  83. "license": "MIT",
  84. "main": "index",
  85. "name": "regexpp",
  86. "repository": {
  87. "type": "git",
  88. "url": "git+https://github.com/mysticatea/regexpp.git"
  89. },
  90. "scripts": {
  91. "build": "run-s build:*",
  92. "build:dts": "dts-bundle --name regexpp --main .temp/index.d.ts --out ../index.d.ts",
  93. "build:rollup": "rollup -c",
  94. "build:tsc": "tsc --module es2015",
  95. "clean": "rimraf .temp index.*",
  96. "codecov": "nyc report -r lcovonly && codecov -t ${CODECOV_TOKEN} --disable=gcov",
  97. "lint": "eslint scripts src test --ext .ts",
  98. "postversion": "git push && git push --tags",
  99. "prebuild": "npm run -s clean",
  100. "pretest": "run-s build lint",
  101. "preversion": "npm test",
  102. "prewatch": "npm run -s clean",
  103. "test": "nyc _mocha \"test/*.ts\" --reporter dot --timeout 10000",
  104. "update:test": "ts-node scripts/update-fixtures.ts",
  105. "update:unicode": "run-s update:unicode:*",
  106. "update:unicode:ids": "ts-node scripts/update-unicode-ids.ts",
  107. "update:unicode:props": "ts-node scripts/update-unicode-properties.ts",
  108. "version": "npm run -s build",
  109. "watch": "_mocha \"test/*.ts\" --require ts-node/register --reporter dot --timeout 10000 --watch-extensions ts --watch --growl"
  110. },
  111. "version": "3.1.0"
  112. }