package.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "regexpp",
  3. "version": "2.0.1",
  4. "description": "Regular expression parser for ECMAScript 2018.",
  5. "engines": {
  6. "node": ">=6.5.0"
  7. },
  8. "main": "index",
  9. "files": [
  10. "index.*"
  11. ],
  12. "dependencies": {},
  13. "devDependencies": {
  14. "@types/eslint": "^4.16.2",
  15. "@types/mocha": "^5.2.2",
  16. "@types/node": "^10.3.3",
  17. "coveralls": "^3.0.1",
  18. "dts-bundle": "^0.7.3",
  19. "eslint": "^4.19.1",
  20. "eslint-plugin-mysticatea": "^5.0.0-beta.15",
  21. "mocha": "^5.2.0",
  22. "npm-run-all": "^4.1.3",
  23. "nyc": "^12.0.2",
  24. "rimraf": "^2.6.2",
  25. "rollup": "^0.60.7",
  26. "rollup-plugin-node-resolve": "^3.3.0",
  27. "rollup-plugin-sourcemaps": "^0.4.2",
  28. "rollup-watch": "^4.3.1",
  29. "ts-node": "^6.1.1",
  30. "typescript": "^2.9.2",
  31. "typescript-eslint-parser": "^16.0.0"
  32. },
  33. "scripts": {
  34. "prebuild": "npm run -s clean",
  35. "build": "run-s build:*",
  36. "build:tsc": "tsc --module es2015",
  37. "build:rollup": "rollup -c",
  38. "build:dts": "dts-bundle --name regexpp --main .temp/index.d.ts --out ../index.d.ts",
  39. "clean": "rimraf .temp index.*",
  40. "coveralls": "nyc report --reporter=text-lcov | coveralls",
  41. "lint": "eslint scripts src test --ext .ts",
  42. "pretest": "run-s build lint",
  43. "test": "nyc _mocha \"test/*.ts\" --reporter dot --timeout 10000",
  44. "update:test": "ts-node scripts/update-fixtures.ts",
  45. "update:ids": "ts-node scripts/update-unicode-ids.ts",
  46. "preversion": "npm test",
  47. "version": "npm run -s build",
  48. "postversion": "git push && git push --tags",
  49. "prewatch": "npm run -s clean",
  50. "watch": "_mocha \"test/*.ts\" --require ts-node/register --reporter dot --timeout 10000 --watch-extensions .ts --watch --growl"
  51. },
  52. "repository": {
  53. "type": "git",
  54. "url": "git+https://github.com/mysticatea/regexpp.git"
  55. },
  56. "keywords": [
  57. "regexp",
  58. "regular",
  59. "expression",
  60. "parser",
  61. "validator",
  62. "ast",
  63. "abstract",
  64. "syntax",
  65. "tree",
  66. "ecmascript",
  67. "es2015",
  68. "es2016",
  69. "es2017",
  70. "es2018",
  71. "annexB"
  72. ],
  73. "author": "Toru Nagashima (https://github.com/mysticatea)",
  74. "license": "MIT",
  75. "bugs": {
  76. "url": "https://github.com/mysticatea/regexpp/issues"
  77. },
  78. "homepage": "https://github.com/mysticatea/regexpp#readme"
  79. }