package.json 711 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "flow-parser",
  3. "version": "0.251.1",
  4. "description": "JavaScript parser written in OCaml. Produces ESTree AST",
  5. "homepage": "https://flow.org",
  6. "license": "MIT",
  7. "author": {
  8. "name": "Flow Team",
  9. "email": "flow@fb.com"
  10. },
  11. "files": [
  12. "flow_parser.js"
  13. ],
  14. "main": "flow_parser.js",
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/facebook/flow.git"
  18. },
  19. "scripts": {
  20. "test": "node test/run_tests.js",
  21. "build": "make js"
  22. },
  23. "dependencies": {},
  24. "devDependencies": {
  25. "ast-types": "^0.15.2",
  26. "chalk": "^4.1.2",
  27. "esprima-fb": "15001.1001.0-dev-harmony-fb",
  28. "minimist": ">=1.2.6"
  29. },
  30. "engines": {
  31. "node": ">=0.4.0"
  32. }
  33. }