package.json 767 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "texinfo",
  3. "version": "0.1.0",
  4. "main": "dist/info.js",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://notabug.org/mthl/texinfo.git"
  8. },
  9. "email": "bug-texinfo@gnu.org",
  10. "homepage": "https://www.gnu.org/texinfo",
  11. "contributors": [
  12. "Per Bothner <per@gnu.org>",
  13. "Mathieu Lirzin <mthl@gnu.org>"
  14. ],
  15. "license": "GPL-3.0",
  16. "dependencies": {},
  17. "devDependencies": {
  18. "rollup": "^0.41.6",
  19. "rollup-plugin-buble": "^0.15.0",
  20. "rollup-plugin-eslint": "^3.0.0",
  21. "rollup-plugin-uglify": "^2.0.1"
  22. },
  23. "scripts": {
  24. "build": "rollup --config build-aux/rollup.js",
  25. "build:kawa": "rollup --config build-aux/rollup-kawa.js",
  26. "dist": "rollup --config build-aux/rollup-dist.js"
  27. },
  28. "files": [
  29. "dist"
  30. ]
  31. }