source: trip-planner-front/node_modules/fastq/package.json@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.3 KB
Line 
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"
14 },
15 "pre-commit": [
16 "test"
17 ],
18 "repository": {
19 "type": "git",
20 "url": "git+https://github.com/mcollina/fastq.git"
21 },
22 "keywords": [
23 "fast",
24 "queue",
25 "async",
26 "worker"
27 ],
28 "author": "Matteo Collina <hello@matteocollina.com>",
29 "license": "ISC",
30 "bugs": {
31 "url": "https://github.com/mcollina/fastq/issues"
32 },
33 "homepage": "https://github.com/mcollina/fastq#readme",
34 "devDependencies": {
35 "async": "^3.1.0",
36 "neo-async": "^2.6.1",
37 "nyc": "^15.0.0",
38 "pre-commit": "^1.2.2",
39 "snazzy": "^9.0.0",
40 "standard": "^16.0.0",
41 "tape": "^5.0.0",
42 "typescript": "^4.0.2"
43 },
44 "dependencies": {
45 "reusify": "^1.0.4"
46 },
47 "standard": {
48 "ignore": [
49 "example.mjs"
50 ]
51 }
52}
Note: See TracBrowser for help on using the repository browser.