-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 952 Bytes
/
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
{
"name": "gmatch",
"description": "Search for a pattern in a stream as fast as JavaScriptly possible.",
"author": "Gürgün Dayıoğlu",
"license": "MIT",
"version": "4.0.6",
"type": "commonjs",
"main": "./src/index.js",
"exports": "./src/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"benchmark": "node bench/index.js",
"test": "npm run lint && c8 --100 node --test test/index.js",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint --fix . && prettier --write .",
"typescript": "tsc src/*.js --allowJs --declaration --emitDeclarationOnly --skipLibCheck"
},
"devDependencies": {
"@fastify/pre-commit": "^2.1.0",
"c8": "^10.1.2",
"globals": "^15.11.0",
"grules": "^0.25.10",
"streamsearch": "^1.1.0",
"tinybench": "^2.9.0",
"typescript": ">=5.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gurgunday/gmatch.git"
}
}