-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.76 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "wildcard-match",
"version": "5.1.3",
"description": "A tiny and extremely fast library for compiling and matching basic glob patterns",
"author": "Alex Schneider <me@schneider.ax>",
"license": "ISC",
"repository": "https://github.com/axtgr/wildcard-match",
"keywords": [
"glob",
"pattern",
"wildcard",
"match",
"regexp"
],
"private": true,
"type": "commonjs",
"main": "build/index.js",
"module": "build/index.es.mjs",
"unpkg": "build/index.umd.js",
"types": "build/index.d.ts",
"exports": {
"import": "./build/index.es.mjs",
"require": "./build/index.js",
"types": "./build/index.d.ts"
},
"files": [
"build"
],
"scripts": {
"build": "rollup -c",
"bench": "node bench/bench",
"lint": "eslint {src,test,bench}/*",
"format": "eslint --cache --fix {src,test,bench}/* && prettier --write **/*.md",
"test": "ts-node -T -r \"core-js/modules/es.symbol.async-iterator\" -I \" \" node_modules/pta/src/cli.js test/[!_]*.mjs"
},
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"benchmark": "^2.1.4",
"core-js": "^3.36.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^3.4.1",
"globrex": "^0.1.2",
"husky": "^4.3.8",
"matcher": "^4.0.0",
"picomatch": "^2.3.1",
"prettier": "^2.8.8",
"pta": "^0.2.3",
"rollup": "^2.79.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "2.0.4",
"ts-node": "^9.1.1",
"ts-transform-default-export": "^1.0.3",
"typescript": "~4.7.0"
}
}