package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "@vue/web-component-wrapper",
  3. "version": "1.2.0",
  4. "description": "wrap a vue component as a web component.",
  5. "main": "dist/vue-wc-wrapper.js",
  6. "unpkg": "dist/vue-wc-wrapper.global.js",
  7. "files": [
  8. "dist"
  9. ],
  10. "scripts": {
  11. "test": "jest",
  12. "lint": "eslint src",
  13. "build": "rollup -c",
  14. "prepare": "rollup -c"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/vuejs/web-component-wrapper.git"
  19. },
  20. "keywords": [
  21. "vue",
  22. "web-component"
  23. ],
  24. "author": "Evan You",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/vuejs/web-component-wrapper/issues"
  28. },
  29. "homepage": "https://github.com/vuejs/web-component-wrapper#readme",
  30. "devDependencies": {
  31. "eslint": "^4.16.0",
  32. "eslint-plugin-vue-libs": "^2.1.0",
  33. "http-server": "^0.11.1",
  34. "jest": "^22.1.4",
  35. "lint-staged": "^6.1.0",
  36. "puppeteer": "^1.0.0",
  37. "rollup": "^0.55.3",
  38. "vue": "^2.5.13",
  39. "yorkie": "^1.0.3"
  40. },
  41. "eslintConfig": {
  42. "env": {
  43. "browser": true
  44. },
  45. "extends": "plugin:vue-libs/recommended"
  46. },
  47. "gitHooks": {
  48. "pre-commit": "lint-staged"
  49. },
  50. "lint-staged": {
  51. "*.js": [
  52. "eslint --fix",
  53. "git add"
  54. ]
  55. }
  56. }