package.json 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "name": "regexpp",
  3. "version": "1.1.0",
  4. "description": "Regular expression parser for ECMAScript 2018.",
  5. "engines": {
  6. "node": ">=4.0.0"
  7. },
  8. "main": "index",
  9. "files": [
  10. "index.*"
  11. ],
  12. "dependencies": {},
  13. "devDependencies": {
  14. "@types/eslint": "^4.16.0",
  15. "@types/mocha": "^2.2.48",
  16. "@types/node": "^9.4.6",
  17. "babel-core": "^6.26.0",
  18. "babel-plugin-transform-es2015-destructuring": "^6.23.0",
  19. "babel-plugin-transform-es2015-parameters": "^6.24.1",
  20. "babel-plugin-transform-es2015-spread": "^6.22.0",
  21. "dts-bundle": "^0.7.3",
  22. "eslint": "^4.18.0",
  23. "eslint-config-mysticatea": "^13.0.2",
  24. "eslint-config-prettier": "^2.9.0",
  25. "eslint-plugin-prettier": "^2.4.0",
  26. "mocha": "^5.0.1",
  27. "npm-run-all": "^4.1.2",
  28. "prettier": "^1.9.2",
  29. "rimraf": "^2.6.2",
  30. "rollup": "^0.56.1",
  31. "rollup-plugin-babel": "^3.0.3",
  32. "rollup-plugin-node-resolve": "^3.0.3",
  33. "rollup-plugin-sourcemaps": "^0.4.2",
  34. "rollup-watch": "^4.3.1",
  35. "ts-node": "^5.0.0",
  36. "typescript": "^2.7.2",
  37. "typescript-eslint-parser": "^14.0.0"
  38. },
  39. "scripts": {
  40. "prebuild": "npm run -s clean",
  41. "build": "run-s build:*",
  42. "build:tsc": "tsc --module es2015 --target es2015",
  43. "build:mjs": "rollup -c rollup-mjs.config.js",
  44. "build:js": "rollup -c rollup-js.config.js",
  45. "build:dts": "dts-bundle --name regexpp --main .temp/index.d.ts --out ../index.d.ts",
  46. "clean": "rimraf .temp index.*",
  47. "lint": "eslint src test tools --ext .ts",
  48. "pretest": "run-s build lint",
  49. "test": "_mocha --require ts-node/register --reporter dot --timeout 10000 \"test/*.ts\"",
  50. "update:test": "ts-node tools/update-fixtures.ts",
  51. "update:ids": "ts-node tools/update-unicode-ids.ts",
  52. "preversion": "npm test",
  53. "version": "npm run -s build",
  54. "postversion": "git push && git push --tags",
  55. "prewatch": "npm run -s clean",
  56. "watch": "npm run -s test -- --watch-extensions .ts --watch --growl"
  57. },
  58. "repository": {
  59. "type": "git",
  60. "url": "git+https://github.com/mysticatea/regexpp.git"
  61. },
  62. "keywords": [
  63. "regexp",
  64. "regular",
  65. "expression",
  66. "parser",
  67. "validator",
  68. "ast",
  69. "abstract",
  70. "syntax",
  71. "tree",
  72. "ecmascript",
  73. "es2015",
  74. "es2016",
  75. "es2017",
  76. "es2018",
  77. "annexB"
  78. ],
  79. "author": "Toru Nagashima (https://github.com/mysticatea)",
  80. "license": "MIT",
  81. "bugs": {
  82. "url": "https://github.com/mysticatea/regexpp/issues"
  83. },
  84. "homepage": "https://github.com/mysticatea/regexpp#readme",
  85. "__npminstall_done": "Thu Dec 24 2020 20:20:58 GMT+0800 (CST)",
  86. "_from": "regexpp@1.1.0",
  87. "_resolved": "https://registry.npm.taobao.org/regexpp/download/regexpp-1.1.0.tgz"
  88. }