package.json 958 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "chatui",
  3. "version": "1.0.0",
  4. "description": "A javascript chatbot library for frontend / UI development",
  5. "main": "build.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "lint": "jshint src/js/",
  9. "doc": "./node_modules/.bin/jsdoc ./src/js/index-d3.js --destination docs",
  10. "prebuild": "npm run lint && npm run doc",
  11. "build": "node build.js"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/svift-org/ChatUI.git"
  16. },
  17. "keywords": [
  18. "conversational",
  19. "chatbot",
  20. "chat",
  21. "ui",
  22. "interface",
  23. "js"
  24. ],
  25. "author": "Sebastian Meier",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/svift-org/ChatUI/issues"
  29. },
  30. "homepage": "https://github.com/svift-org/ChatUI#readme",
  31. "devDependencies": {
  32. "fs": "0.0.1-security",
  33. "jsdoc": "^3.5.5",
  34. "jshint": "^2.9.5",
  35. "node-sass": "^4.7.1",
  36. "uglify-js2": "^2.1.11"
  37. }
  38. }