package.json 985 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "regexp-tree",
  3. "version": "0.1.24",
  4. "license": "MIT",
  5. "description": "Regular Expressions parser in JavaScript",
  6. "repository": "DmitrySoshnikov/regexp-tree",
  7. "homepage": "https://github.com/DmitrySoshnikov/regexp-tree",
  8. "bugs": "https://github.com/DmitrySoshnikov/regexp-tree/issues",
  9. "scripts": {
  10. "build": "node scripts/build.js",
  11. "watch": "node scripts/build.js --watch",
  12. "test": "jest",
  13. "prepublish": "npm run build && npm test",
  14. "eslint": "eslint src/ && eslint bin/regexp-tree"
  15. },
  16. "bin": {
  17. "regexp-tree": "./bin/regexp-tree"
  18. },
  19. "keywords": [
  20. "regexp",
  21. "parser",
  22. "AST",
  23. "tree",
  24. "JavaScript",
  25. "ECMAScript"
  26. ],
  27. "author": "Dmitry Soshnikov",
  28. "devDependencies": {
  29. "babel-cli": "^6.26.0",
  30. "babel-preset-env": "1.6.1",
  31. "babel-preset-flow": "6.23.0",
  32. "eslint": "^4.11.0",
  33. "jest-cli": "^19.0.2",
  34. "prettier": "^1.17.1",
  35. "shelljs": "^0.7.8",
  36. "syntax-cli": "^0.1.11"
  37. }
  38. }