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.
 
 
 
 
 
 

68 lines
1.9 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 --config config/webpack.config.js",
  11. "prebuild": "rimraf dist && npm prune",
  12. "build": "webpack --progress --hide-modules --config config/webpack.prod.config.js"
  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. "vue": "^1.0.13",
  32. "vue-i18n": "^2.3.3"
  33. },
  34. "devDependencies": {
  35. "babel-core": "^6.3.26",
  36. "babel-loader": "^6.2.1",
  37. "babel-plugin-transform-runtime": "^6.3.13",
  38. "babel-preset-es2015": "^6.3.13",
  39. "babel-runtime": "^5.8.34",
  40. "css-loader": "^0.23.1",
  41. "eslint": "^1.10.3",
  42. "eslint-loader": "^1.2.0",
  43. "file-loader": "^0.8.5",
  44. "jshint": "latest",
  45. "mocha": "latest",
  46. "node-sass": "^3.4.2",
  47. "node-static": "latest",
  48. "nodemon": "latest",
  49. "npm-run-all": "latest",
  50. "rimraf": "^2.5.0",
  51. "template-html-loader": "0.0.3",
  52. "uglify-js": "^2.6.1",
  53. "url-loader": "^0.5.7",
  54. "vue-hot-reload-api": "^1.2.2",
  55. "vue-html-loader": "^1.1.0",
  56. "vue-loader": "^8.0.0",
  57. "vue-style-loader": "^1.0.0",
  58. "vueify": "^8.2.0",
  59. "vueify-insert-css": "^1.0.0",
  60. "webpack": "^1.12.9",
  61. "webpack-dev-server": "^1.14.0"
  62. },
  63. "babel": {
  64. "presets": [
  65. "es2015"
  66. ]
  67. }
  68. }