package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "crowi",
  3. "version": "1.1.1",
  4. "description": "The simple & powerful Wiki",
  5. "tags": [
  6. "wiki",
  7. "communication",
  8. "documentation",
  9. "collaboration"
  10. ],
  11. "author": "Sotaro KARASAWA <sotaro.k@gmail.com>",
  12. "contributors": [
  13. "Keisuke SATO <riaf@me.com> (http://riaf.jp)"
  14. ],
  15. "config": {
  16. "blanket": {
  17. "pattern": "./lib/**/*.js"
  18. }
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/crowi/crowi.git"
  23. },
  24. "engines": {
  25. "node": "0.10.x",
  26. "npm": "2.4.x"
  27. },
  28. "dependencies": {
  29. "async": "~0.9.0",
  30. "aws-sdk": "~2.0.0-rc.19",
  31. "bower": "~1.3.12",
  32. "cli": "~0.6.4",
  33. "connect-flash": "~0.1.1",
  34. "connect-redis": "^2.1.0",
  35. "consolidate": "=0.10.0",
  36. "debug": "^1.0.3",
  37. "express": "=3.4.4",
  38. "express-form": "~0.10.1",
  39. "express-session": "~1.9.3",
  40. "facebook-node-sdk": "=0.1.10",
  41. "googleapis": "=0.4.7",
  42. "grunt": "~0.4.5",
  43. "grunt-cli": "~0.1.13",
  44. "grunt-contrib-concat": "~0.5.0",
  45. "grunt-contrib-jshint": "^0.10.0",
  46. "grunt-contrib-uglify": "~0.2.2",
  47. "grunt-contrib-watch": "~0.5.3",
  48. "grunt-mocha-test": "^0.12.7",
  49. "grunt-sass": "~0.17.0",
  50. "mongoose": "=3.8.14",
  51. "mongoose-paginate": "~3.1.0",
  52. "nodemailer": "~1.2.2",
  53. "nodemailer-ses-transport": "~1.1.0",
  54. "redis": "~0.12.1",
  55. "socket.io": "~0.9.16",
  56. "socket.io-client": "~0.9.16",
  57. "swig": "=1.3.2",
  58. "time": "=0.10.0"
  59. },
  60. "devDependencies": {
  61. "blanket": "^1.1.6",
  62. "chai": "^1.10.0",
  63. "mocha": "~2.1.0",
  64. "proxyquire": "~1.3.0",
  65. "sinon": "^1.12.2",
  66. "sinon-chai": "^2.7.0"
  67. },
  68. "license": [
  69. {
  70. "type": "MIT",
  71. "url": "http://www.opensource.org/licenses/MIT"
  72. }
  73. ],
  74. "scripts": {
  75. "start": "node app.js",
  76. "test": "./node_modules/.bin/grunt test",
  77. "postinstall": "./node_modules/.bin/bower cache clean && ./node_modules/.bin/bower install && ./node_modules/.bin/grunt"
  78. },
  79. "env": {
  80. "NODE_ENV": "production"
  81. },
  82. "bugs": {
  83. "url": "https://github.com/crowi/crowi/issues"
  84. }
  85. }