package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "umzug",
  3. "version": "2.3.0",
  4. "description": "Framework agnostic migration tool for Node.JS",
  5. "keywords": [
  6. "migrate",
  7. "migration",
  8. "migrations",
  9. "sequelize"
  10. ],
  11. "main": "lib/index.js",
  12. "dependencies": {
  13. "bluebird": "^3.7.2"
  14. },
  15. "devDependencies": {
  16. "@babel/cli": "^7.8.4",
  17. "@babel/core": "^7.9.0",
  18. "@babel/plugin-proposal-object-rest-spread": "^7.9.0",
  19. "@babel/plugin-transform-runtime": "^7.9.0",
  20. "@babel/preset-env": "^7.9.0",
  21. "@babel/register": "^7.9.0",
  22. "babel-plugin-dynamic-import-node": "^2.3.0",
  23. "babel-plugin-syntax-dynamic-import": "^6.18.0",
  24. "chai": "^4.2.0",
  25. "coffee-script": "^1.8.0",
  26. "eslint": "^5.9.0",
  27. "eslint-config-standard": "^12.0.0",
  28. "eslint-plugin-import": "^2.20.1",
  29. "eslint-plugin-mocha": "^6.3.0",
  30. "eslint-plugin-node": "^8.0.0",
  31. "eslint-plugin-promise": "^4.2.1",
  32. "eslint-plugin-standard": "^4.0.1",
  33. "lodash": "^4.17.15",
  34. "mocha": "^6.2.2",
  35. "sequelize": "^5.21.5",
  36. "sinon": "^7.5.0",
  37. "sinon-chai": "^3.5.0",
  38. "sqlite3": "^4.1.1",
  39. "typescript": "^3.8.3",
  40. "uuid": "^7.0.2"
  41. },
  42. "scripts": {
  43. "lint": "eslint src test",
  44. "prepare": "babel src --out-dir lib",
  45. "test": "mocha -r @babel/register --check-leaks test/index.js"
  46. },
  47. "repository": {
  48. "type": "git",
  49. "url": "https://github.com/sequelize/umzug.git"
  50. },
  51. "author": "Sascha Depold <sascha@depold.com>",
  52. "contributors": [
  53. {
  54. "name": "Jukka Hyytiälä",
  55. "email": "hyytiala.jukka@gmail.com"
  56. },
  57. {
  58. "name": "Pascal Pflaum",
  59. "email": "mail@pascalpflaum.de"
  60. }
  61. ],
  62. "license": "MIT",
  63. "bugs": {
  64. "url": "https://github.com/sequelize/umzug/issues"
  65. },
  66. "homepage": "https://github.com/sequelize/umzug",
  67. "engines": {
  68. "node": ">=6.0.0"
  69. }
  70. }