package.json 832 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "hsmusic-wiki",
  3. "version": "0.1.0",
  4. "description": "static wiki software cataloguing collaborative creation",
  5. "type": "module",
  6. "main": "src/upd8.js",
  7. "bin": {
  8. "hsmusic": "./src/upd8.js"
  9. },
  10. "scripts": {
  11. "test": "tap 'test/snapshot/*.js' 'test/unit/**/*.js'",
  12. "dev": "eslint src && node src/upd8.js"
  13. },
  14. "dependencies": {
  15. "chroma-js": "^2.4.2",
  16. "command-exists": "^1.2.9",
  17. "eslint": "^8.37.0",
  18. "he": "^1.2.0",
  19. "js-yaml": "^4.1.0",
  20. "marked": "^5.0.2",
  21. "word-wrap": "^1.2.3"
  22. },
  23. "license": "GPL-3.0",
  24. "devDependencies": {
  25. "chokidar": "^3.5.3",
  26. "tap": "^16.3.4",
  27. "tcompare": "^6.0.0"
  28. },
  29. "tap": {
  30. "coverage": false,
  31. "coverage-report": false
  32. }
  33. }