source: imaps-frontend/node_modules/fastq/package.json

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 1.3 KB
Line 
1{
2 "name": "fastq",
3 "version": "1.17.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": "^15.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}
Note: See TracBrowser for help on using the repository browser.