package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "degenerator",
  3. "version": "3.0.4",
  4. "description": "Compiles sync functions into async generator functions",
  5. "main": "dist/src/index",
  6. "typings": "dist/src/index",
  7. "files": [
  8. "dist/src"
  9. ],
  10. "scripts": {
  11. "prebuild": "rimraf dist",
  12. "build": "tsc",
  13. "postbuild": "cpy --parents src test '!**/*.ts' dist",
  14. "test": "mocha --reporter spec dist/test/test.js",
  15. "test-lint": "eslint src --ext .js,.ts",
  16. "prepublishOnly": "npm run build"
  17. },
  18. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
  19. "repository": {
  20. "type": "git",
  21. "url": "git://github.com/TooTallNate/node-degenerator.git"
  22. },
  23. "engines": {
  24. "node": ">= 6"
  25. },
  26. "license": "MIT",
  27. "dependencies": {
  28. "ast-types": "^0.13.2",
  29. "escodegen": "^1.8.1",
  30. "esprima": "^4.0.0",
  31. "vm2": "^3.9.17"
  32. },
  33. "devDependencies": {
  34. "@types/escodegen": "^0.0.6",
  35. "@types/esprima": "^4.0.2",
  36. "@types/mocha": "^5.2.7",
  37. "@types/node": "^12.12.17",
  38. "@typescript-eslint/eslint-plugin": "1.6.0",
  39. "@typescript-eslint/parser": "1.1.0",
  40. "cpy-cli": "^2.0.0",
  41. "eslint": "5.16.0",
  42. "eslint-config-airbnb": "17.1.0",
  43. "eslint-config-prettier": "4.1.0",
  44. "eslint-import-resolver-typescript": "1.1.1",
  45. "eslint-plugin-import": "2.16.0",
  46. "eslint-plugin-jsx-a11y": "6.2.1",
  47. "eslint-plugin-react": "7.12.4",
  48. "mocha": "^6.2.0",
  49. "rimraf": "^3.0.0",
  50. "typescript": "^3.7.3"
  51. }
  52. }