package.json 883 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "docdash",
  3. "version": "2.0.1",
  4. "description": "A clean, responsive documentation template theme for JSDoc 3 inspired by lodash and minami",
  5. "main": "publish.js",
  6. "scripts": {
  7. "test": "jsdoc -c fixtures/fixtures.conf.json",
  8. "sync": "browser-sync start -s ../fixtures-doc -f ../fixtures-doc --reload-delay 1000 --no-ui --no-notify",
  9. "watch": "watch-run -d 1000 -p tmpl/**,static/** \"npm run test\""
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/clenemt/docdash.git"
  14. },
  15. "devDependencies": {
  16. "browser-sync": "latest",
  17. "jsdoc": "latest",
  18. "watch-run": "latest"
  19. },
  20. "author": "Clement Moron <clement.moron@gmail.com>",
  21. "license": "Apache-2.0",
  22. "keywords": [
  23. "jsdoc",
  24. "template"
  25. ],
  26. "files": [
  27. "publish.js",
  28. "static",
  29. "tmpl"
  30. ],
  31. "dependencies": {
  32. "@jsdoc/salty": "^0.2.1"
  33. }
  34. }