package.json 769 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "vue-template-es2015-compiler",
  3. "version": "1.9.1",
  4. "description": "Post compiler for Vue template render functions to support ES2015+ features",
  5. "main": "index.js",
  6. "author": "Evan You",
  7. "license": "MIT",
  8. "files": [
  9. "index.js",
  10. "buble.js"
  11. ],
  12. "scripts": {
  13. "build": "cd buble && npm run build && cp dist/buble-browser-deps.umd.js ../buble.js",
  14. "test": "jest",
  15. "prepublishOnly": "jest && npm run build"
  16. },
  17. "devDependencies": {
  18. "jest": "^24.1.0",
  19. "vue": "^2.6.0",
  20. "vue-template-compiler": "^2.6.0"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/vuejs/vue-template-es2015-compiler"
  25. },
  26. "jest": {
  27. "testPathIgnorePatterns": [
  28. "/node_modules/",
  29. "/buble/"
  30. ]
  31. }
  32. }