| [9af201e] | 1 | {
|
|---|
| 2 | "name": "fast-glob",
|
|---|
| 3 | "version": "3.3.3",
|
|---|
| 4 | "description": "It's a very fast and efficient glob library for Node.js",
|
|---|
| 5 | "license": "MIT",
|
|---|
| 6 | "repository": "mrmlnc/fast-glob",
|
|---|
| 7 | "author": {
|
|---|
| 8 | "name": "Denis Malinochkin",
|
|---|
| 9 | "url": "https://mrmlnc.com"
|
|---|
| 10 | },
|
|---|
| 11 | "engines": {
|
|---|
| 12 | "node": ">=8.6.0"
|
|---|
| 13 | },
|
|---|
| 14 | "main": "out/index.js",
|
|---|
| 15 | "typings": "out/index.d.ts",
|
|---|
| 16 | "files": [
|
|---|
| 17 | "out",
|
|---|
| 18 | "!out/{benchmark,tests}",
|
|---|
| 19 | "!out/**/*.map",
|
|---|
| 20 | "!out/**/*.spec.*"
|
|---|
| 21 | ],
|
|---|
| 22 | "keywords": [
|
|---|
| 23 | "glob",
|
|---|
| 24 | "patterns",
|
|---|
| 25 | "fast",
|
|---|
| 26 | "implementation"
|
|---|
| 27 | ],
|
|---|
| 28 | "devDependencies": {
|
|---|
| 29 | "@nodelib/fs.macchiato": "^1.0.1",
|
|---|
| 30 | "@types/glob-parent": "^5.1.0",
|
|---|
| 31 | "@types/merge2": "^1.1.4",
|
|---|
| 32 | "@types/micromatch": "^4.0.0",
|
|---|
| 33 | "@types/mocha": "^5.2.7",
|
|---|
| 34 | "@types/node": "^14.18.53",
|
|---|
| 35 | "@types/picomatch": "^2.3.0",
|
|---|
| 36 | "@types/sinon": "^7.5.0",
|
|---|
| 37 | "bencho": "^0.1.1",
|
|---|
| 38 | "eslint": "^6.5.1",
|
|---|
| 39 | "eslint-config-mrmlnc": "^1.1.0",
|
|---|
| 40 | "execa": "^7.1.1",
|
|---|
| 41 | "fast-glob": "^3.0.4",
|
|---|
| 42 | "fdir": "6.0.1",
|
|---|
| 43 | "glob": "^10.0.0",
|
|---|
| 44 | "hereby": "^1.8.1",
|
|---|
| 45 | "mocha": "^6.2.1",
|
|---|
| 46 | "rimraf": "^5.0.0",
|
|---|
| 47 | "sinon": "^7.5.0",
|
|---|
| 48 | "snap-shot-it": "^7.9.10",
|
|---|
| 49 | "typescript": "^4.9.5"
|
|---|
| 50 | },
|
|---|
| 51 | "dependencies": {
|
|---|
| 52 | "@nodelib/fs.stat": "^2.0.2",
|
|---|
| 53 | "@nodelib/fs.walk": "^1.2.3",
|
|---|
| 54 | "glob-parent": "^5.1.2",
|
|---|
| 55 | "merge2": "^1.3.0",
|
|---|
| 56 | "micromatch": "^4.0.8"
|
|---|
| 57 | },
|
|---|
| 58 | "scripts": {
|
|---|
| 59 | "clean": "rimraf out",
|
|---|
| 60 | "lint": "eslint \"src/**/*.ts\" --cache",
|
|---|
| 61 | "compile": "tsc",
|
|---|
| 62 | "test": "mocha \"out/**/*.spec.js\" -s 0",
|
|---|
| 63 | "test:e2e": "mocha \"out/**/*.e2e.js\" -s 0",
|
|---|
| 64 | "test:e2e:sync": "mocha \"out/**/*.e2e.js\" -s 0 --grep \"\\(sync\\)\"",
|
|---|
| 65 | "test:e2e:async": "mocha \"out/**/*.e2e.js\" -s 0 --grep \"\\(async\\)\"",
|
|---|
| 66 | "test:e2e:stream": "mocha \"out/**/*.e2e.js\" -s 0 --grep \"\\(stream\\)\"",
|
|---|
| 67 | "build": "npm run clean && npm run compile && npm run lint && npm test",
|
|---|
| 68 | "watch": "npm run clean && npm run compile -- -- --sourceMap --watch",
|
|---|
| 69 | "bench:async": "npm run bench:product:async && npm run bench:regression:async",
|
|---|
| 70 | "bench:stream": "npm run bench:product:stream && npm run bench:regression:stream",
|
|---|
| 71 | "bench:sync": "npm run bench:product:sync && npm run bench:regression:sync",
|
|---|
| 72 | "bench:product": "npm run bench:product:async && npm run bench:product:sync && npm run bench:product:stream",
|
|---|
| 73 | "bench:product:async": "hereby bench:product:async",
|
|---|
| 74 | "bench:product:sync": "hereby bench:product:sync",
|
|---|
| 75 | "bench:product:stream": "hereby bench:product:stream",
|
|---|
| 76 | "bench:regression": "npm run bench:regression:async && npm run bench:regression:sync && npm run bench:regression:stream",
|
|---|
| 77 | "bench:regression:async": "hereby bench:regression:async",
|
|---|
| 78 | "bench:regression:sync": "hereby bench:regression:sync",
|
|---|
| 79 | "bench:regression:stream": "hereby bench:regression:stream"
|
|---|
| 80 | }
|
|---|
| 81 | }
|
|---|