CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json54 linesDownload Raw Back to fastq
1{2  "name": "fastq",3  "version": "1.19.1",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",12    "typescript": "tsc --project ./test/tsconfig.json",13    "legacy": "tape test/test.js"14  },15  "pre-commit": [16    "test",17    "typescript"18  ],19  "repository": {20    "type": "git",21    "url": "git+https://github.com/mcollina/fastq.git"22  },23  "keywords": [24    "fast",25    "queue",26    "async",27    "worker"28  ],29  "author": "Matteo Collina <hello@matteocollina.com>",30  "license": "ISC",31  "bugs": {32    "url": "https://github.com/mcollina/fastq/issues"33  },34  "homepage": "https://github.com/mcollina/fastq#readme",35  "devDependencies": {36    "async": "^3.1.0",37    "neo-async": "^2.6.1",38    "nyc": "^17.0.0",39    "pre-commit": "^1.2.2",40    "snazzy": "^9.0.0",41    "standard": "^16.0.0",42    "tape": "^5.0.0",43    "typescript": "^5.0.4"44  },45  "dependencies": {46    "reusify": "^1.0.4"47  },48  "standard": {49    "ignore": [50      "example.mjs"51    ]52  }53}54 
basant307/AI_Governance_Project · CoolFace