package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. {
  2. "_args": [
  3. [
  4. "memfs@3.5.3",
  5. "/Users/mac/projects/mime/mine"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "memfs@3.5.3",
  10. "_id": "memfs@3.5.3",
  11. "_inBundle": false,
  12. "_integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==",
  13. "_location": "/memfs",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "memfs@3.5.3",
  19. "name": "memfs",
  20. "escapedName": "memfs",
  21. "rawSpec": "3.5.3",
  22. "saveSpec": null,
  23. "fetchSpec": "3.5.3"
  24. },
  25. "_requiredBy": [
  26. "/webpack-dev-middleware"
  27. ],
  28. "_resolved": "https://registry.npmmirror.com/memfs/-/memfs-3.5.3.tgz",
  29. "_spec": "3.5.3",
  30. "_where": "/Users/mac/projects/mime/mine",
  31. "bugs": {
  32. "url": "https://github.com/streamich/memfs/issues"
  33. },
  34. "commitlint": {
  35. "extends": [
  36. "@commitlint/config-conventional"
  37. ]
  38. },
  39. "config": {
  40. "commitizen": {
  41. "path": "git-cz"
  42. }
  43. },
  44. "dependencies": {
  45. "fs-monkey": "^1.0.4"
  46. },
  47. "description": "In-memory file-system with Node's fs API.",
  48. "devDependencies": {
  49. "@semantic-release/changelog": "^6.0.1",
  50. "@semantic-release/git": "^10.0.1",
  51. "@semantic-release/npm": "^9.0.1",
  52. "@types/jest": "^27.5.2",
  53. "@types/node": "^10.17.60",
  54. "husky": "^8.0.1",
  55. "jest": "^28.1.1",
  56. "prettier": "^2.7.1",
  57. "pretty-quick": "^3.1.3",
  58. "rimraf": "^3.0.2",
  59. "semantic-release": "^19.0.3",
  60. "ts-jest": "^28.0.5",
  61. "ts-node": "^10.8.1",
  62. "tslint": "^5.20.1",
  63. "tslint-config-common": "^1.6.0",
  64. "typescript": "^4.7.4"
  65. },
  66. "engines": {
  67. "node": ">= 4.0.0"
  68. },
  69. "files": [
  70. "lib"
  71. ],
  72. "homepage": "https://github.com/streamich/memfs#readme",
  73. "jest": {
  74. "moduleFileExtensions": [
  75. "ts",
  76. "tsx",
  77. "js",
  78. "jsx"
  79. ],
  80. "testEnvironment": "node",
  81. "testRegex": ".*/__tests__/.*\\.(test|spec)\\.(jsx?|tsx?)$",
  82. "transform": {
  83. "^.+\\.tsx?$": "ts-jest"
  84. }
  85. },
  86. "keywords": [
  87. "fs",
  88. "filesystem",
  89. "fs.js",
  90. "memory-fs",
  91. "memfs",
  92. "file",
  93. "file system",
  94. "mount",
  95. "memory",
  96. "in-memory",
  97. "virtual",
  98. "test",
  99. "testing",
  100. "mock"
  101. ],
  102. "license": "Unlicense",
  103. "main": "lib/index.js",
  104. "name": "memfs",
  105. "release": {
  106. "prepare": [
  107. "@semantic-release/changelog",
  108. "@semantic-release/npm",
  109. "@semantic-release/git"
  110. ],
  111. "verifyConditions": [
  112. "@semantic-release/changelog",
  113. "@semantic-release/npm",
  114. "@semantic-release/git"
  115. ]
  116. },
  117. "repository": {
  118. "type": "git",
  119. "url": "git+https://github.com/streamich/memfs.git"
  120. },
  121. "scripts": {
  122. "build": "tsc -p . && cp src/getBigInt.js lib/",
  123. "clean": "rimraf lib types",
  124. "prettier": "prettier --ignore-path .gitignore --write \"src/**/*.{ts,js}\"",
  125. "prettier:diff": "prettier -l \"src/**/*.{ts,js}\"",
  126. "test": "jest --maxWorkers 2",
  127. "test:coverage": "jest --coverage",
  128. "test:watch": "jest --watch",
  129. "tslint": "tslint \"src/**/*.ts\" -t verbose",
  130. "typecheck": "tsc -p .",
  131. "watch": "watch \"npm run build\" ./src"
  132. },
  133. "types": "lib/index.d.ts",
  134. "version": "3.5.3"
  135. }