package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "author": "Ben Newman <bn@cs.stanford.edu>",
  3. "name": "ast-types",
  4. "version": "0.13.4",
  5. "description": "Esprima-compatible implementation of the Mozilla JS Parser API",
  6. "keywords": [
  7. "ast",
  8. "abstract syntax tree",
  9. "hierarchy",
  10. "mozilla",
  11. "spidermonkey",
  12. "parser api",
  13. "esprima",
  14. "types",
  15. "type system",
  16. "type checking",
  17. "dynamic types",
  18. "parsing",
  19. "transformation",
  20. "syntax"
  21. ],
  22. "homepage": "http://github.com/benjamn/ast-types",
  23. "repository": {
  24. "type": "git",
  25. "url": "git://github.com/benjamn/ast-types.git"
  26. },
  27. "license": "MIT",
  28. "main": "main.js",
  29. "types": "main.d.ts",
  30. "scripts": {
  31. "gen": "ts-node --transpile-only script/gen-types.ts",
  32. "mocha": "test/run.sh",
  33. "test": "npm run gen && npm run build && npm run mocha",
  34. "clean": "ts-emit-clean",
  35. "build": "tsc && ts-add-module-exports",
  36. "prepack": "npm run clean && npm run gen && npm run build",
  37. "postpack": "npm run clean"
  38. },
  39. "dependencies": {
  40. "tslib": "^2.0.1"
  41. },
  42. "devDependencies": {
  43. "@babel/parser": "7.7.7",
  44. "@babel/types": "7.4.4",
  45. "@types/esprima": "4.0.2",
  46. "@types/glob": "7.1.1",
  47. "@types/mocha": "5.2.6",
  48. "@types/node": "12.0.0",
  49. "espree": "7.3.0",
  50. "esprima": "4.0.1",
  51. "esprima-fb": "15001.1001.0-dev-harmony-fb",
  52. "flow-parser": "0.132.0",
  53. "glob": "7.1.6",
  54. "mocha": "6.1.4",
  55. "recast": "0.20.0",
  56. "reify": "0.20.12",
  57. "ts-add-module-exports": "1.0.0",
  58. "ts-emit-clean": "1.0.0",
  59. "ts-node": "7.0.1",
  60. "typescript": "3.9.7"
  61. },
  62. "engines": {
  63. "node": ">=4"
  64. }
  65. }