-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
{
"name": "fast-find-in-files",
"version": "1.0.5",
"description": "fast-find-in-files recursively searches sub-directories for needle matches",
"keywords": [
"fast",
"find",
"in",
"files",
"match",
"regex",
"text"
],
"main": "dist/index.js",
"files": [
"dist/**/*",
"src/**/*",
"binding.gyp"
],
"repository": "https://github.com/erikengervall/fast-find-in-files.git",
"homepage": "https://erikengervall.github.io/fast-find-in-files/",
"bugs": {
"url": "https://github.com/erikengervall/fast-find-in-files/issues"
},
"author": "Erik Engervall <[email protected]>",
"license": "MIT",
"gypfile": true,
"scripts": {
"clean": "rm -rf node_modules build dist",
"prep": "yarn && yarn build",
"build": "tsc",
"test": "jest",
"lint": "eslint \"./src-node/**/*.ts\""
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^7.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.8.7",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@typescript-eslint/typescript-estree": "^6.8.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"prettier-2": "npm:prettier@^2",
"prettier-eslint": "^16.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}