-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.29 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"author": "SMAKSS",
"bugs": {
"url": "https://github.com/SMAKSS/search/issues"
},
"description": "Enhance your searching capabilities with @smakss/search. Effortlessly find keywords in arrays, nested arrays, and objects, perfect for deep search needs in various data structures.",
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.5",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rollup": "^4.14.1",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typescript": "^5.4.4"
},
"engines": {
"node": ">=18.0.0"
},
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"files": [
"dist"
],
"homepage": "https://github.com/SMAKSS/search#readme",
"keywords": [
"advanced-search",
"deep-search-arrays",
"object-search",
"nested-data-search",
"keyword-finder",
"npm",
"yarn",
"search",
"Array",
"Object",
"SMAKSS",
"CommonJS",
"EcmaScript",
"Typescript",
"Nested array",
"Nested object",
"Search in arrays",
"Search in objects"
],
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"name": "@smakss/search",
"repository": {
"type": "git",
"url": "git+https://github.com/SMAKSS/search.git"
},
"scripts": {
"format": "prettier --write \"**/*.+(js|json|yml|yaml|ts|md)\"",
"format:check": "prettier -l \"**/*.+(js|json|yml|yaml|ts|md)\"",
"generate": "rollup -c",
"generate:check": "yarn format && yarn lint && yarn typecheck",
"lint": "eslint --cache --cache-location ./node_modules/.cache/.eslintcache --ext js,ts --max-warnings=0 .",
"lint:fix": "eslint src/**/*.ts --fix",
"setup": "yarn && husky install",
"test": "jest",
"typecheck": "tsc -b .",
"upgrade:deps": "rm -rf node_modules yarn.lock && ncu -u && yarn"
},
"type": "module",
"types": "lib",
"version": "2.1.0"
}