-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.28 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
{
"name": "find-plus",
"version": "2.0.0",
"description": "A file finding utility patterned after Linux find.",
"main": "dist/find-plus.js",
"files": [
"./dist",
"LICENSE.txt",
"README.md"
],
"scripts": {
"build": "make",
"lint": "make lint",
"lint:fix": "make lint-fix",
"test": "make test",
"prepack": "make build",
"preversion": "make test && make lint",
"qa": "make qa"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"file search",
"files",
"find",
"find file",
"find files",
"linux find",
"search"
],
"author": "Zane Rockenbaugh <zane@liquid-labs.com>",
"license": "Apache-2.0",
"repository": {
"url": "git+ssh://git@github.com/liquid-labs/find-plus.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/liquid-labs/find-plus/issues"
},
"homepage": "https://github.com/liquid-labs/find-plus#readme",
"devDependencies": {
"@liquid-labs/catalyst-resource-babel-and-rollup": "^1.0.0-alpha.4",
"@liquid-labs/catalyst-resource-eslint": "^1.0.0-alpha.1",
"@liquid-labs/catalyst-resource-jest": "^1.0.0-alpha.4",
"@liquid-labs/shell-toolkit": "^1.0.0-alpha.8"
},
"_comply": {
"orgKey": "@liquid-labs"
},
"dependencies": {
"minimatch": "^9.0.3"
}
}