1 | {
|
2 | "name": "tiny-glob",
|
3 | "version": "0.2.7",
|
4 | "description": "Tiny and extremely fast globbing",
|
5 | "main": "src/index.js",
|
6 | "files": [
|
7 | "*.js",
|
8 | "*.d.ts"
|
9 | ],
|
10 | "scripts": {
|
11 | "bench": "node bench",
|
12 | "test": "tape test/*.js | tap-spec"
|
13 | },
|
14 | "author": {
|
15 | "name": "Terkel Gjervig",
|
16 | "email": "terkel@terkel.com",
|
17 | "url": "https://terkel.com"
|
18 | },
|
19 | "keywords": [
|
20 | "glob",
|
21 | "globbing",
|
22 | "patterns",
|
23 | "wildcard",
|
24 | "pattern-matching",
|
25 | "expansion"
|
26 | ],
|
27 | "repository": "https://github.com/terkelg/tiny-glob",
|
28 | "license": "MIT",
|
29 | "dependencies": {
|
30 | "globalyzer": "0.1.0",
|
31 | "globrex": "^0.1.2"
|
32 | },
|
33 | "devDependencies": {
|
34 | "tap-spec": "^5.0.0",
|
35 | "tape": "^5.0.1"
|
36 | },
|
37 | "types": "./index.d.ts"
|
38 | }
|