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.
 
 
 
 
 
 

71 regels
1.8 KiB

  1. {
  2. "name": "lesspass",
  3. "version": "1.0.0",
  4. "description": "lesspass is like keepass without the need to persist password",
  5. "main": "lesspass.js",
  6. "scripts": {
  7. "test": "mocha --compilers js:babel-core/register --ui bdd --reporter min --recursive ./tests",
  8. "build": "npm-run-all clean copy build_app",
  9. "build_app": "browserify -e ./app/app.js -o ./dist/app.js",
  10. "clean": "rimraf ./dist/**/* && rimraf dist",
  11. "copy": "mkdir dist && cp -r public/* dist/",
  12. "serve": "static -p 5000 --gzip --host-address 0.0.0.0 dist/",
  13. "start": "npm run serve",
  14. "prestart": "npm run build",
  15. "watch": "npm-run-all --parallel serve watch_app",
  16. "watch_app": "watchify -dv -e ./app/app.js -o ./dist/app.js"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git+ssh://git@github.com/guillaumevincent/lesspass.git"
  21. },
  22. "keywords": [
  23. "keepass",
  24. "nodejs",
  25. "node"
  26. ],
  27. "author": "Guillaume Vincent",
  28. "license": "MIT",
  29. "bugs": {
  30. "url": "https://github.com/guillaumevincent/lesspass/issues"
  31. },
  32. "homepage": "https://github.com/guillaumevincent/lesspass#readme",
  33. "dependencies": {
  34. "bootstrap": "^4.0.0-alpha.2",
  35. "chardinjs": "git://github.com/heelhook/chardin.js.git",
  36. "clipboard": "^1.5.5",
  37. "font-awesome": "^4.5.0",
  38. "jquery": "^2.1.4"
  39. },
  40. "jshintConfig": {
  41. "esnext": true
  42. },
  43. "devDependencies": {
  44. "babel-core": "^6.3.15",
  45. "babel-preset-es2015": "^6.3.13",
  46. "babelify": "^7.2.0",
  47. "browserify": "^12.0.1",
  48. "mocha": "^2.3.4",
  49. "node-static": "^0.7.7",
  50. "npm-run-all": "^1.4.0",
  51. "rimraf": "^2.4.4"
  52. },
  53. "babel": {
  54. "presets": [
  55. "es2015"
  56. ]
  57. },
  58. "browserify": {
  59. "transform": [
  60. [
  61. "babelify",
  62. {
  63. "presets": [
  64. "es2015"
  65. ]
  66. }
  67. ]
  68. ]
  69. }
  70. }