package.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. {
  2. "_args": [
  3. [
  4. "regexpp@1.1.0",
  5. "E:\\2023\\5\\myjadmin"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "regexpp@1.1.0",
  10. "_id": "regexpp@1.1.0",
  11. "_inBundle": false,
  12. "_integrity": "sha512-LOPw8FpgdQF9etWMaAfG/WRthIdXJGYp4mJ2Jgn/2lpkbod9jPn0t9UqN7AxBOKNfzRbYyVfgc7Vk4t/MpnXgw==",
  13. "_location": "/regexpp",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "regexpp@1.1.0",
  19. "name": "regexpp",
  20. "escapedName": "regexpp",
  21. "rawSpec": "1.1.0",
  22. "saveSpec": null,
  23. "fetchSpec": "1.1.0"
  24. },
  25. "_requiredBy": [
  26. "/eslint"
  27. ],
  28. "_resolved": "https://registry.npmjs.org/regexpp/-/regexpp-1.1.0.tgz",
  29. "_spec": "1.1.0",
  30. "_where": "E:\\2023\\5\\myjadmin",
  31. "author": {
  32. "name": "Toru Nagashima",
  33. "url": "https://github.com/mysticatea"
  34. },
  35. "bugs": {
  36. "url": "https://github.com/mysticatea/regexpp/issues"
  37. },
  38. "dependencies": {},
  39. "description": "Regular expression parser for ECMAScript 2018.",
  40. "devDependencies": {
  41. "@types/eslint": "^4.16.0",
  42. "@types/mocha": "^2.2.48",
  43. "@types/node": "^9.4.6",
  44. "babel-core": "^6.26.0",
  45. "babel-plugin-transform-es2015-destructuring": "^6.23.0",
  46. "babel-plugin-transform-es2015-parameters": "^6.24.1",
  47. "babel-plugin-transform-es2015-spread": "^6.22.0",
  48. "dts-bundle": "^0.7.3",
  49. "eslint": "^4.18.0",
  50. "eslint-config-mysticatea": "^13.0.2",
  51. "eslint-config-prettier": "^2.9.0",
  52. "eslint-plugin-prettier": "^2.4.0",
  53. "mocha": "^5.0.1",
  54. "npm-run-all": "^4.1.2",
  55. "prettier": "^1.9.2",
  56. "rimraf": "^2.6.2",
  57. "rollup": "^0.56.1",
  58. "rollup-plugin-babel": "^3.0.3",
  59. "rollup-plugin-node-resolve": "^3.0.3",
  60. "rollup-plugin-sourcemaps": "^0.4.2",
  61. "rollup-watch": "^4.3.1",
  62. "ts-node": "^5.0.0",
  63. "typescript": "^2.7.2",
  64. "typescript-eslint-parser": "^14.0.0"
  65. },
  66. "engines": {
  67. "node": ">=4.0.0"
  68. },
  69. "files": [
  70. "index.*"
  71. ],
  72. "homepage": "https://github.com/mysticatea/regexpp#readme",
  73. "keywords": [
  74. "regexp",
  75. "regular",
  76. "expression",
  77. "parser",
  78. "validator",
  79. "ast",
  80. "abstract",
  81. "syntax",
  82. "tree",
  83. "ecmascript",
  84. "es2015",
  85. "es2016",
  86. "es2017",
  87. "es2018",
  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:js": "rollup -c rollup-js.config.js",
  101. "build:mjs": "rollup -c rollup-mjs.config.js",
  102. "build:tsc": "tsc --module es2015 --target es2015",
  103. "clean": "rimraf .temp index.*",
  104. "lint": "eslint src test tools --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": "_mocha --require ts-node/register --reporter dot --timeout 10000 \"test/*.ts\"",
  111. "update:ids": "ts-node tools/update-unicode-ids.ts",
  112. "update:test": "ts-node tools/update-fixtures.ts",
  113. "version": "npm run -s build",
  114. "watch": "npm run -s test -- --watch-extensions .ts --watch --growl"
  115. },
  116. "version": "1.1.0"
  117. }