-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.46 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "regex-partial-match",
"version": "1.1.2",
"description": "A regular expression transform for partial matching",
"devEngines": {
"runtime": {
"name": "node",
"version": ">=23"
},
"packageManager": {
"name": "npm",
"version": "11.17.0+sha512.3eeaf18997b11070d313849268b23766b9db0068997dec9471073170fe43fa17f2b4d0337bf0f52330ee2274e7f5754b21b01052742e48f5c9c74d8b1e32ef43"
}
},
"keywords": [
"regexp",
"regular expressions",
"partial matcher"
],
"license": "ISC",
"author": {
"name": "Tom Pereira",
"url": "https://github.com/TomStrepsil"
},
"bugs": {
"url": "https://github.com/TomStrepsil/regex-partial-match/issues"
},
"homepage": "https://github.com/TomStrepsil/regex-partial-match#readme",
"contributors": [
{
"name": "Lucas Trzesniewski",
"url": "https://github.com/ltrzesniewski"
}
],
"type": "module",
"main": "lib/partialMatchRegExp.js",
"exports": {
".": {
"types": "./lib/partialMatchRegExp.d.ts",
"import": "./lib/partialMatchRegExp.js",
"default": "./lib/partialMatchRegExp.js"
},
"./extend": {
"types": "./lib/extend.d.ts",
"import": "./lib/extend.js",
"default": "./lib/extend.js"
}
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TomStrepsil/regex-partial-match.git"
},
"workspaces": [
"benchmarking"
],
"sideEffects": false,
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "simple-git-hooks",
"prepublishOnly": "tsc -p tsconfig.build.json",
"ci:smoke-test-built-package": "node .github/scripts/smoke-test-built-package.ts",
"test": "vitest run --config ./test/vitest.config.ts",
"test:watch": "vitest --config ./test/vitest.config.ts"
},
"simple-git-hooks": {
"pre-commit": "node_modules/.bin/lint-staged"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@typescript/lib-es2018": "file:types/lib-es2018",
"@typescript/lib-es2022": "file:types/lib-es2022",
"@eslint/js": "^9.17.0",
"@eslint/markdown": "^7.5.1",
"@types/node": "^25.9.3",
"eslint": "^9.17.0",
"jiti": "^2.6.1",
"lint-staged": "^15.2.11",
"simple-git-hooks": "^2.12.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.18.1",
"vitest": "^4.0.15"
}
}