UNPKG

2.84 kBJSONView Raw
1{
2 "name": "fast-glob",
3 "version": "2.2.0",
4 "description": "Is a faster `node-glob` alternative",
5 "license": "MIT",
6 "repository": "mrmlnc/fast-glob",
7 "author": {
8 "name": "Denis Malinochkin",
9 "url": "canonium.com"
10 },
11 "engines": {
12 "node": ">=4.0.0"
13 },
14 "main": "index.js",
15 "typings": "index.d.ts",
16 "keywords": [
17 "glob",
18 "patterns",
19 "fast",
20 "implementation"
21 ],
22 "devDependencies": {
23 "@types/bash-glob": "^2.0.0",
24 "@types/compute-stdev": "^1.0.0",
25 "@types/easy-table": "0.0.31",
26 "@types/execa": "^0.8.1",
27 "@types/glob": "^5.0.35",
28 "@types/glob-parent": "^3.1.0",
29 "@types/glob-stream": "^6.1.0",
30 "@types/globby": "^6.1.0",
31 "@types/is-glob": "^4.0.0",
32 "@types/merge2": "^1.1.4",
33 "@types/micromatch": "^3.1.0",
34 "@types/minimist": "^1.2.0",
35 "@types/mocha": "^2.2.48",
36 "@types/node": "^9.4.0",
37 "@types/rimraf": "2.0.2",
38 "bash-glob": "^2.0.0",
39 "compute-stdev": "^1.0.0",
40 "easy-table": "^1.1.1",
41 "execa": "^0.9.0",
42 "fast-glob": "^2.0.1",
43 "glob": "^7.1.2",
44 "glob-stream": "^6.1.0",
45 "globby": "^8.0.0",
46 "minimist": "^1.2.0",
47 "mocha": "^5.0.0",
48 "rimraf": "^2.6.2",
49 "tslint": "^5.9.1",
50 "tslint-config-mrmlnc": "^1.0.0",
51 "typescript": "^2.7.1"
52 },
53 "dependencies": {
54 "@mrmlnc/readdir-enhanced": "^2.2.1",
55 "glob-parent": "^3.1.0",
56 "is-glob": "^4.0.0",
57 "merge2": "^1.2.1",
58 "micromatch": "^3.1.8"
59 },
60 "scripts": {
61 "clean": "rimraf out",
62 "lint": "tslint \"src/**/*.ts\" -p . -t stylish",
63 "compile": "tsc",
64 "test": "mocha \"out/**/*.spec.js\" -s 0",
65 "smoke": "mocha \"out/**/*.smoke.js\" -s 0",
66 "build": "npm run clean && npm run lint && npm run compile && npm test",
67 "watch": "npm run clean && npm run lint & npm run compile -- --sourceMap --watch",
68 "bench-async-1": "node ./out/benchmark --depth 1",
69 "bench-async-5": "node ./out/benchmark --depth 5",
70 "bench-async-10": "node ./out/benchmark --depth 10",
71 "bench-async-50": "node ./out/benchmark --depth 50",
72 "bench-async-100": "node ./out/benchmark --depth 100",
73 "bench-async": "npm run bench-async-1 && npm run bench-async-5 && npm run bench-async-10 && npm run bench-async-50 && npm run bench-async-100",
74 "bench-sync-1": "node ./out/benchmark --depth 1 --type sync",
75 "bench-sync-5": "node ./out/benchmark --depth 5 --type sync",
76 "bench-sync-10": "node ./out/benchmark --depth 10 --type sync",
77 "bench-sync-50": "node ./out/benchmark --depth 50 --type sync",
78 "bench-sync-100": "node ./out/benchmark --depth 100 --type sync",
79 "bench-sync": "npm run bench-sync-1 && npm run bench-sync-5 && npm run bench-sync-10 && npm run bench-sync-50 && npm run bench-sync-100",
80 "bench": "npm run build && npm run bench-async && npm run bench-sync"
81 }
82}