package.json 984 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "abab",
  3. "version": "2.0.0",
  4. "description": "WHATWG spec-compliant implementations of window.atob and window.btoa.",
  5. "main": "index.js",
  6. "files": [
  7. "index.js",
  8. "lib/"
  9. ],
  10. "scripts": {
  11. "mocha": "mocha test/node",
  12. "karma": "karma start",
  13. "test": "npm run lint && npm run mocha && npm run karma",
  14. "lint": "eslint ."
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/jsdom/abab.git"
  19. },
  20. "keywords": [
  21. "atob",
  22. "btoa",
  23. "browser"
  24. ],
  25. "author": "Jeff Carpenter <gcarpenterv@gmail.com>",
  26. "license": "SEE LICENSE IN LICENSE.md",
  27. "bugs": {
  28. "url": "https://github.com/jsdom/abab/issues"
  29. },
  30. "homepage": "https://github.com/jsdom/abab#readme",
  31. "devDependencies": {
  32. "eslint": "^4.19.1",
  33. "karma": "^2.0.0",
  34. "karma-cli": "^1.0.1",
  35. "karma-firefox-launcher": "^1.1.0",
  36. "karma-mocha": "^1.3.0",
  37. "karma-webpack": "^3.0.0",
  38. "mocha": "^5.1.0",
  39. "webpack": "^4.5.0"
  40. }
  41. }