package.json 3.0 KB

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