您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

package.json 1.4 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "lesspass-pure",
  3. "version": "9.1.11",
  4. "description": "LessPass web component",
  5. "license": "GPL-3.0",
  6. "author": "Guillaume Vincent <guillaume@oslab.fr>",
  7. "scripts": {
  8. "start": "vue-cli-service serve --port 8000",
  9. "build": "vue-cli-service build",
  10. "build:i18n": "cd scripts && node buildI18n.js",
  11. "cypress:run": "cypress run",
  12. "cypress:open": "cypress open",
  13. "test": "npm run test:unit && npm run test:e2e",
  14. "test:watch": "jest --watch",
  15. "test:unit": "jest",
  16. "test:e2e": "start-server-and-test start http://localhost:8000 cypress:run"
  17. },
  18. "jest": {
  19. "testPathIgnorePatterns": [
  20. "cypress"
  21. ],
  22. "moduleFileExtensions": [
  23. "js",
  24. "vue"
  25. ],
  26. "transform": {
  27. ".*\\.(vue)$": "vue-jest",
  28. "^.+\\.js$": "../../node_modules/babel-jest"
  29. }
  30. },
  31. "dependencies": {
  32. "@oslab/atob": "^0.1.0",
  33. "@oslab/btoa": "^0.1.0",
  34. "awesomplete": "^1.1.5",
  35. "axios": "^0.19.0",
  36. "balloon-css": "^1.0.3",
  37. "bootstrap": "^4.3.1",
  38. "copy-text-to-clipboard": "^2.1.1",
  39. "core-js": "^3.1.2",
  40. "font-awesome": "^4.7.0",
  41. "jwt-decode": "^2.2.0",
  42. "lesspass": "^9.0.0",
  43. "lodash": "^4.17.15",
  44. "vue": "^2.6.10",
  45. "vue-polyglot": "^2.0.1",
  46. "vue-router": "^3.1.3",
  47. "vuejs-paginate": "^2.1.0",
  48. "vuex": "^3.1.1",
  49. "vuex-persistedstate": "^2.5.4",
  50. "vuex-router-sync": "^5.0.0"
  51. },
  52. "browserslist": [
  53. "> 1%",
  54. "last 2 versions"
  55. ]
  56. }