package.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. {
  2. "_from": "ts-md5@^1.3.1",
  3. "_id": "ts-md5@1.3.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-DiwiXfwvcTeZ5wCE0z+2A9EseZsztaiZtGrtSaY5JOD7ekPnR/GoIVD5gXZAlK9Na9Kvpo9Waz5rW64WKAWApg==",
  6. "_location": "/ts-md5",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "ts-md5@^1.3.1",
  12. "name": "ts-md5",
  13. "escapedName": "ts-md5",
  14. "rawSpec": "^1.3.1",
  15. "saveSpec": null,
  16. "fetchSpec": "^1.3.1"
  17. },
  18. "_requiredBy": [
  19. "#USER",
  20. "/"
  21. ],
  22. "_resolved": "https://registry.npmmirror.com/ts-md5/-/ts-md5-1.3.1.tgz",
  23. "_shasum": "f5b860c0d5241dd9bb4e909dd73991166403f511",
  24. "_spec": "ts-md5@^1.3.1",
  25. "_where": "/Users/zhanwencai/code/game/congkong/webServer",
  26. "bugs": {
  27. "url": "https://github.com/cotag/ts-md5/issues"
  28. },
  29. "bundleDependencies": false,
  30. "deprecated": false,
  31. "description": "TypeScript MD5 implementation",
  32. "devDependencies": {
  33. "@types/jest": "^26.0.9",
  34. "jest": "^26.2.2",
  35. "jest-config": "^26.2.2",
  36. "semantic-release": "^19.0.3",
  37. "ts-jest": "^26.1.4",
  38. "tslib": "^2.0.1",
  39. "tslint": "^6.1.3",
  40. "typedoc": "^0.22.11",
  41. "typescript": "^4.5.5"
  42. },
  43. "engines": {
  44. "node": ">=12"
  45. },
  46. "files": [
  47. "dist",
  48. "src"
  49. ],
  50. "homepage": "https://github.com/cotag/ts-md5",
  51. "jest": {
  52. "transform": {
  53. ".(ts|tsx)": "ts-jest"
  54. },
  55. "testEnvironment": "jsdom",
  56. "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
  57. "moduleFileExtensions": [
  58. "ts",
  59. "tsx",
  60. "js"
  61. ],
  62. "coveragePathIgnorePatterns": [
  63. "/node_modules/",
  64. "/test/"
  65. ],
  66. "collectCoverageFrom": [
  67. "src/**/*.{js,ts}"
  68. ]
  69. },
  70. "keywords": [
  71. "placeos",
  72. "cotag",
  73. "md5",
  74. "typescript"
  75. ],
  76. "license": "MIT",
  77. "main": "dist/cjs/index.js",
  78. "maintainers": [
  79. {
  80. "name": "Stephen von Takach",
  81. "email": "steve@cotag.me"
  82. },
  83. {
  84. "name": "Alex Sorafumo",
  85. "email": "alex@place.tech"
  86. }
  87. ],
  88. "module": "dist/esm/index.js",
  89. "name": "ts-md5",
  90. "repository": {
  91. "type": "git",
  92. "url": "git+https://github.com/cotag/ts-md5.git"
  93. },
  94. "scripts": {
  95. "build": "node ./clean.js && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && npm run build-worker",
  96. "build-worker": "node ./build-worker.js",
  97. "docs": "typedoc --excludePrivate --out docs src",
  98. "lint": "tslint --project tsconfig.json",
  99. "prepare": "npm run build",
  100. "semantic-release": "semantic-release",
  101. "test": "jest --coverage",
  102. "test:ci": "jest --runInBand",
  103. "test:coverage": "jest --coverage",
  104. "test:watch": "jest --coverage --watch"
  105. },
  106. "typings": "dist/esm/index.d.ts",
  107. "version": "1.3.1"
  108. }