package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "base64-arraybuffer",
  3. "description": "Encode/decode base64 data into ArrayBuffers",
  4. "main": "dist/base64-arraybuffer.umd.js",
  5. "module": "dist/base64-arraybuffer.es5.js",
  6. "typings": "dist/types/index.d.ts",
  7. "version": "1.0.2",
  8. "homepage": "https://github.com/niklasvh/base64-arraybuffer",
  9. "author": {
  10. "name": "Niklas von Hertzen",
  11. "email": "niklasvh@gmail.com",
  12. "url": "https://hertzen.com"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/niklasvh/base64-arraybuffer"
  17. },
  18. "bugs": {
  19. "url": "https://github.com/niklasvh/base64-arraybuffer/issues"
  20. },
  21. "license": "MIT",
  22. "engines": {
  23. "node": ">= 0.6.0"
  24. },
  25. "scripts": {
  26. "prebuild": "rimraf dist/",
  27. "build": "tsc --module commonjs && rollup -c rollup.config.ts",
  28. "format": "prettier --write \"{src,test}/**/*.ts\"",
  29. "lint": "tslint -c tslint.json --project tsconfig.json -t codeFrame src/**/*.ts test/**/*.ts",
  30. "mocha": "mocha --require ts-node/register test/*.ts",
  31. "test": "npm run lint && npm run mocha",
  32. "release": "standard-version"
  33. },
  34. "devDependencies": {
  35. "@rollup/plugin-commonjs": "^19.0.0",
  36. "@rollup/plugin-node-resolve": "^13.0.0",
  37. "@rollup/plugin-typescript": "^8.2.1",
  38. "@types/mocha": "^8.2.2",
  39. "@types/node": "^16.0.0",
  40. "mocha": "9.0.2",
  41. "prettier": "^2.3.2",
  42. "rimraf": "3.0.2",
  43. "rollup": "^2.52.7",
  44. "rollup-plugin-json": "^4.0.0",
  45. "rollup-plugin-sourcemaps": "^0.6.3",
  46. "standard-version": "^9.3.0",
  47. "ts-node": "^10.0.0",
  48. "tslib": "^2.3.0",
  49. "tslint": "^6.1.3",
  50. "tslint-config-prettier": "^1.18.0",
  51. "typescript": "^4.3.5"
  52. },
  53. "keywords": []
  54. }