You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

74 lines
2.0 KiB

  1. {
  2. "name": "lesspass",
  3. "version": "1.0.0",
  4. "description": "lesspass is like keepass without the need to persist passwords",
  5. "main": "app/app.js",
  6. "scripts": {
  7. "test": "mocha --compilers js:babel-core/register tests",
  8. "test:watch": "npm run test -- -w",
  9. "prestart": "npm install",
  10. "start": "webpack-dev-server --inline --hot",
  11. "prebuild": "rimraf dist && npm prune",
  12. "build": "NODE_ENV=production webpack --progress --hide-modules"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+ssh://git@github.com/guillaumevincent/lesspass.git"
  17. },
  18. "keywords": [
  19. "keepass",
  20. "lesspass"
  21. ],
  22. "author": "Guillaume Vincent",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/guillaumevincent/lesspass/issues"
  26. },
  27. "homepage": "https://github.com/guillaumevincent/lesspass#readme",
  28. "dependencies": {
  29. "bootstrap": "^4.0.0-alpha.2",
  30. "clipboard": "^1.5.5",
  31. "font-awesome": "^4.5.0",
  32. "jquery": "^2.2.0",
  33. "vue": "^1.0.15",
  34. "vue-i18n": "^2.3.3",
  35. "vue-resource": "^0.7.0",
  36. "vue-router": "^0.7.10"
  37. },
  38. "devDependencies": {
  39. "babel-core": "^6.4.5",
  40. "babel-loader": "^6.2.1",
  41. "babel-plugin-transform-runtime": "^6.4.3",
  42. "babel-preset-es2015": "^6.3.13",
  43. "babel-runtime": "^5.8.34",
  44. "css-loader": "^0.23.1",
  45. "eslint": "^1.10.3",
  46. "eslint-loader": "^1.2.0",
  47. "file-loader": "^0.8.5",
  48. "imports-loader": "^0.6.5",
  49. "jshint": "latest",
  50. "mocha": "latest",
  51. "node-sass": "^3.4.2",
  52. "node-static": "latest",
  53. "nodemon": "latest",
  54. "npm-run-all": "latest",
  55. "rimraf": "^2.5.1",
  56. "template-html-loader": "0.0.3",
  57. "uglify-js": "^2.6.1",
  58. "url-loader": "^0.5.7",
  59. "vue-hot-reload-api": "^1.2.2",
  60. "vue-html-loader": "^1.1.0",
  61. "vue-loader": "^8.0.2",
  62. "vue-style-loader": "^1.0.0",
  63. "vueify": "^8.3.2",
  64. "vueify-insert-css": "^1.0.0",
  65. "webpack": "^1.12.12",
  66. "webpack-dev-server": "^1.14.1"
  67. },
  68. "babel": {
  69. "presets": [
  70. "es2015"
  71. ]
  72. }
  73. }