Changeset 59329aa for trip-planner-front/node_modules/memfs
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/memfs/package.json
rceaed42 r59329aa 1 1 { 2 "name": "memfs", 3 "version": "3.3.0", 4 "description": "In-memory file-system with Node's fs API.", 5 "main": "lib/index.js", 6 "types": "lib/index.d.ts", 7 "files": [ 8 "lib" 2 "_args": [ 3 [ 4 "memfs@3.3.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 9 7 ], 10 "scripts": { 11 "clean": "rimraf lib types", 12 "build": "tsc -p . && cpy src/*.js lib", 13 "test": "jest --maxWorkers 2", 14 "test:coverage": "jest --coverage", 15 "test:watch": "jest --watch", 16 "watch": "watch \"npm run build\" ./src", 17 "prettier": "prettier --ignore-path .gitignore --write \"src/**/*.{ts,js}\"", 18 "prettier:diff": "prettier -l \"src/**/*.{ts,js}\"", 19 "tslint": "tslint \"src/**/*.ts\" -t verbose" 8 "_development": true, 9 "_from": "memfs@3.3.0", 10 "_id": "memfs@3.3.0", 11 "_inBundle": false, 12 "_integrity": "sha512-BEE62uMfKOavX3iG7GYX43QJ+hAeeWnwIAuJ/R6q96jaMtiLzhsxHJC8B1L7fK7Pt/vXDRwb3SG/yBpNGDPqzg==", 13 "_location": "/memfs", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "memfs@3.3.0", 19 "name": "memfs", 20 "escapedName": "memfs", 21 "rawSpec": "3.3.0", 22 "saveSpec": null, 23 "fetchSpec": "3.3.0" 20 24 }, 21 "repository": { 22 "type": "git", 23 "url": "https://github.com/streamich/memfs.git" 25 "_requiredBy": [ 26 "/webpack-dev-middleware" 27 ], 28 "_resolved": "https://registry.npmjs.org/memfs/-/memfs-3.3.0.tgz", 29 "_spec": "3.3.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "bugs": { 32 "url": "https://github.com/streamich/memfs/issues" 33 }, 34 "config": { 35 "commitizen": { 36 "path": "git-cz" 37 } 24 38 }, 25 39 "dependencies": { 26 40 "fs-monkey": "1.0.3" 27 41 }, 42 "description": "In-memory file-system with Node's fs API.", 28 43 "devDependencies": { 44 "@semantic-release/changelog": "5.0.1", 45 "@semantic-release/git": "9.0.1", 46 "@semantic-release/npm": "8.0.0", 29 47 "@types/jest": "27.0.1", 30 48 "@types/node": "10.17.60", … … 35 53 "pretty-quick": "3.1.1", 36 54 "rimraf": "3.0.2", 55 "semantic-release": "18.0.0", 37 56 "ts-jest": "27.0.5", 38 57 "ts-node": "10.2.1", 39 58 "tslint": "5.20.1", 40 59 "tslint-config-common": "1.6.0", 41 "typescript": "4.4.3", 42 "semantic-release": "18.0.0", 43 "@semantic-release/changelog": "5.0.1", 44 "@semantic-release/git": "9.0.1", 45 "@semantic-release/npm": "8.0.0" 60 "typescript": "4.4.3" 46 61 }, 47 "config": { 48 "commitizen": { 49 "path": "git-cz" 50 } 62 "engines": { 63 "node": ">= 4.0.0" 51 64 }, 65 "files": [ 66 "lib" 67 ], 68 "homepage": "https://github.com/streamich/memfs#readme", 52 69 "jest": { 53 70 "moduleFileExtensions": [ … … 63 80 "testRegex": ".*/__tests__/.*\\.(test|spec)\\.(jsx?|tsx?)$" 64 81 }, 65 "engines": {66 "node": ">= 4.0.0"67 },68 "release": {69 "verifyConditions": [70 "@semantic-release/changelog",71 "@semantic-release/npm",72 "@semantic-release/git"73 ],74 "prepare": [75 "@semantic-release/changelog",76 "@semantic-release/npm",77 "@semantic-release/git"78 ]79 },80 "license": "Unlicense",81 82 "keywords": [ 82 83 "fs", … … 94 95 "testing", 95 96 "mock" 96 ] 97 ], 98 "license": "Unlicense", 99 "main": "lib/index.js", 100 "name": "memfs", 101 "release": { 102 "verifyConditions": [ 103 "@semantic-release/changelog", 104 "@semantic-release/npm", 105 "@semantic-release/git" 106 ], 107 "prepare": [ 108 "@semantic-release/changelog", 109 "@semantic-release/npm", 110 "@semantic-release/git" 111 ] 112 }, 113 "repository": { 114 "type": "git", 115 "url": "git+https://github.com/streamich/memfs.git" 116 }, 117 "scripts": { 118 "build": "tsc -p . && cpy src/*.js lib", 119 "clean": "rimraf lib types", 120 "prettier": "prettier --ignore-path .gitignore --write \"src/**/*.{ts,js}\"", 121 "prettier:diff": "prettier -l \"src/**/*.{ts,js}\"", 122 "test": "jest --maxWorkers 2", 123 "test:coverage": "jest --coverage", 124 "test:watch": "jest --watch", 125 "tslint": "tslint \"src/**/*.ts\" -t verbose", 126 "watch": "watch \"npm run build\" ./src" 127 }, 128 "types": "lib/index.d.ts", 129 "version": "3.3.0" 97 130 }
Note:
See TracChangeset
for help on using the changeset viewer.