forked from justinfagnani/url-pattern-list
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.88 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@openelement/url-pattern-list",
"version": "0.6.0",
"description": "Efficiently match URLs against a collection of URL patterns",
"type": "module",
"main": "index.js",
"scripts": {
"build": "wireit",
"test": "wireit",
"benchmark": "wireit",
"format": "npm run format:fix",
"format:check": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --check",
"format:fix": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-element/url-pattern-list.git"
},
"keywords": [
"url",
"urlpattern",
"url-pattern"
],
"author": "Justin Fagnani <justin@fagnani.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/open-element/url-pattern-list/issues"
},
"homepage": "https://github.com/open-element/url-pattern-list#readme",
"devDependencies": {
"@types/node": "^24.2.0",
"prettier": "^3.6.2",
"prettier-plugin-curly": "^0.3.2",
"typescript": "^5.9.2",
"urlpattern-polyfill": "^10.1.0",
"wireit": "^0.14.12"
},
"files": [
"index.js",
"index.d.ts",
"index.js.map",
"index.d.ts.map"
],
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"wireit": {
"build": {
"command": "tsc --build",
"files": [
"tsconfig.json",
"src/**/*.ts"
],
"outputs": [
"index.{js,d.ts,js.map,d.ts.map}"
],
"clean": "if-file-deleted"
},
"test": {
"command": "node --enable-source-maps --test --test-reporter=spec \"test/**/*_test.js\"",
"dependencies": [
"build"
],
"files": [],
"output": []
},
"benchmark": {
"command": "node --expose-gc --enable-source-maps benchmark/benchmark.js",
"dependencies": [
"build"
],
"files": [],
"output": []
}
}
}