Useful methods for file-related functions.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
880 B

  1. {
  2. "version": "0.1.0",
  3. "license": "MIT",
  4. "main": "dist/index.js",
  5. "typings": "dist/index.d.ts",
  6. "files": [
  7. "dist",
  8. "src"
  9. ],
  10. "engines": {
  11. "node": ">=10"
  12. },
  13. "scripts": {
  14. "start": "tsdx watch",
  15. "build": "tsdx build",
  16. "test": "tsdx test",
  17. "lint": "tsdx lint",
  18. "prepare": "tsdx build"
  19. },
  20. "peerDependencies": {
  21. "crypto-js": "^4.0.0",
  22. "numeral": "^2.0.6"
  23. },
  24. "husky": {
  25. "hooks": {
  26. "pre-commit": "tsdx lint"
  27. }
  28. },
  29. "name": "file-commons",
  30. "author": "Allan Crisostomo",
  31. "module": "dist/file-commons.esm.js",
  32. "devDependencies": {
  33. "@types/crypto-js": "^3.1.47",
  34. "@types/numeral": "^0.0.28",
  35. "fast-check": "^2.3.0",
  36. "husky": "^4.3.0",
  37. "tsdx": "^0.13.3",
  38. "tslib": "^2.0.1",
  39. "typescript": "^4.0.2"
  40. },
  41. "dependencies": {
  42. "crypto-js": "^4.0.0",
  43. "numeral": "^2.0.6"
  44. }
  45. }