Changeset 59329aa for trip-planner-front/node_modules/fs-extra/package.json
- 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/fs-extra/package.json
rceaed42 r59329aa 1 1 { 2 "name": "fs-extra", 3 "version": "8.1.0", 2 "_args": [ 3 [ 4 "fs-extra@8.1.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "fs-extra@8.1.0", 10 "_id": "fs-extra@8.1.0", 11 "_inBundle": false, 12 "_integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", 13 "_location": "/fs-extra", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "fs-extra@8.1.0", 19 "name": "fs-extra", 20 "escapedName": "fs-extra", 21 "rawSpec": "8.1.0", 22 "saveSpec": null, 23 "fetchSpec": "8.1.0" 24 }, 25 "_requiredBy": [ 26 "/streamroller" 27 ], 28 "_resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", 29 "_spec": "8.1.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "JP Richardson", 33 "email": "jprichardson@gmail.com" 34 }, 35 "bugs": { 36 "url": "https://github.com/jprichardson/node-fs-extra/issues" 37 }, 38 "dependencies": { 39 "graceful-fs": "^4.2.0", 40 "jsonfile": "^4.0.0", 41 "universalify": "^0.1.0" 42 }, 4 43 "description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.", 44 "devDependencies": { 45 "coveralls": "^3.0.0", 46 "istanbul": "^0.4.5", 47 "klaw": "^2.1.1", 48 "klaw-sync": "^3.0.2", 49 "minimist": "^1.1.1", 50 "mocha": "^5.0.5", 51 "proxyquire": "^2.0.1", 52 "read-dir-files": "^0.1.1", 53 "semver": "^5.3.0", 54 "standard": "^12.0.1" 55 }, 5 56 "engines": { 6 57 "node": ">=6 <7 || >=8" 7 58 }, 59 "files": [ 60 "lib/", 61 "!lib/**/__tests__/" 62 ], 8 63 "homepage": "https://github.com/jprichardson/node-fs-extra", 9 "repository": {10 "type": "git",11 "url": "https://github.com/jprichardson/node-fs-extra"12 },13 64 "keywords": [ 14 65 "fs", … … 34 85 "move" 35 86 ], 36 "author": "JP Richardson <jprichardson@gmail.com>",37 87 "license": "MIT", 38 "dependencies": { 39 "graceful-fs": "^4.2.0", 40 "jsonfile": "^4.0.0", 41 "universalify": "^0.1.0" 88 "main": "./lib/index.js", 89 "name": "fs-extra", 90 "repository": { 91 "type": "git", 92 "url": "git+https://github.com/jprichardson/node-fs-extra.git" 42 93 }, 43 "devDependencies": {44 "coveralls": "^3.0.0",45 "istanbul": "^0.4.5",46 "klaw": "^2.1.1",47 "klaw-sync": "^3.0.2",48 "minimist": "^1.1.1",49 "mocha": "^5.0.5",50 "proxyquire": "^2.0.1",51 "read-dir-files": "^0.1.1",52 "semver": "^5.3.0",53 "standard": "^12.0.1"54 },55 "main": "./lib/index.js",56 "files": [57 "lib/",58 "!lib/**/__tests__/"59 ],60 94 "scripts": { 61 "full-ci": "npm run lint && npm run coverage",62 95 "coverage": "istanbul cover -i 'lib/**' -x '**/__tests__/**' test.js", 63 96 "coveralls": "coveralls < coverage/lcov.info", 97 "full-ci": "npm run lint && npm run coverage", 64 98 "lint": "standard", 99 "test": "npm run lint && npm run unit", 65 100 "test-find": "find ./lib/**/__tests__ -name *.test.js | xargs mocha", 66 "test": "npm run lint && npm run unit",67 101 "unit": "node test.js" 68 } 102 }, 103 "version": "8.1.0" 69 104 }
Note:
See TracChangeset
for help on using the changeset viewer.