Changeset 59329aa for trip-planner-front/node_modules/fastq
- 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/fastq/package.json
rceaed42 r59329aa 1 1 { 2 "name": "fastq", 3 "version": "1.13.0", 4 "description": "Fast, in memory work queue", 5 "main": "queue.js", 6 "scripts": { 7 "lint": "standard --verbose | snazzy", 8 "unit": "nyc --lines 100 --branches 100 --functions 100 --check-coverage --reporter=text tape test/test.js test/promise.js", 9 "coverage": "nyc --reporter=html --reporter=cobertura --reporter=text tape test/test.js test/promise.js", 10 "test:report": "npm run lint && npm run unit:report", 11 "test": "npm run lint && npm run unit && npm run typescript", 12 "typescript": "tsc --project ./test/tsconfig.json", 13 "legacy": "tape test/test.js" 2 "_args": [ 3 [ 4 "fastq@1.13.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "fastq@1.13.0", 10 "_id": "fastq@1.13.0", 11 "_inBundle": false, 12 "_integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", 13 "_location": "/fastq", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "fastq@1.13.0", 19 "name": "fastq", 20 "escapedName": "fastq", 21 "rawSpec": "1.13.0", 22 "saveSpec": null, 23 "fetchSpec": "1.13.0" 14 24 }, 15 " pre-commit": [16 " test"25 "_requiredBy": [ 26 "/@nodelib/fs.walk" 17 27 ], 18 "repository": { 19 "type": "git", 20 "url": "git+https://github.com/mcollina/fastq.git" 28 "_resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", 29 "_spec": "1.13.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "Matteo Collina", 33 "email": "hello@matteocollina.com" 21 34 }, 22 "keywords": [23 "fast",24 "queue",25 "async",26 "worker"27 ],28 "author": "Matteo Collina <hello@matteocollina.com>",29 "license": "ISC",30 35 "bugs": { 31 36 "url": "https://github.com/mcollina/fastq/issues" 32 37 }, 33 "homepage": "https://github.com/mcollina/fastq#readme", 38 "dependencies": { 39 "reusify": "^1.0.4" 40 }, 41 "description": "Fast, in memory work queue", 34 42 "devDependencies": { 35 43 "async": "^3.1.0", … … 42 50 "typescript": "^4.0.2" 43 51 }, 44 "dependencies": { 45 "reusify": "^1.0.4" 52 "homepage": "https://github.com/mcollina/fastq#readme", 53 "keywords": [ 54 "fast", 55 "queue", 56 "async", 57 "worker" 58 ], 59 "license": "ISC", 60 "main": "queue.js", 61 "name": "fastq", 62 "pre-commit": [ 63 "test" 64 ], 65 "repository": { 66 "type": "git", 67 "url": "git+https://github.com/mcollina/fastq.git" 68 }, 69 "scripts": { 70 "coverage": "nyc --reporter=html --reporter=cobertura --reporter=text tape test/test.js test/promise.js", 71 "legacy": "tape test/test.js", 72 "lint": "standard --verbose | snazzy", 73 "test": "npm run lint && npm run unit && npm run typescript", 74 "test:report": "npm run lint && npm run unit:report", 75 "typescript": "tsc --project ./test/tsconfig.json", 76 "unit": "nyc --lines 100 --branches 100 --functions 100 --check-coverage --reporter=text tape test/test.js test/promise.js" 46 77 }, 47 78 "standard": { … … 49 80 "example.mjs" 50 81 ] 51 } 82 }, 83 "version": "1.13.0" 52 84 }
Note:
See TracChangeset
for help on using the changeset viewer.