-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.59 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-cool-search",
"version": "1.0.4",
"description": "React hook for highly-performant search objects on a list.",
"license": "MIT",
"homepage": "https://github.com/arimariojesus/react-cool-search",
"repository": "https://github.com/arimariojesus/react-cool-search",
"bugs": "https://github.com/arimariojesus/react-cool-search/issues",
"keywords": [
"react",
"hook",
"react-hook",
"use",
"use-search",
"react-cool-search",
"react-search",
"list",
"search",
"filter",
"attributes",
"properies",
"performance",
"typescript"
],
"author": "Arimário Jesus <[email protected]> (https://github.com/arimariojesus)",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"link-pkg": "yarn build:dev && npm link app/node_modules/react && yarn link",
"start": "yarn clean:dist && yarn build:dev -w",
"lint": "run-s lint:*",
"lint:code": "eslint --fix . --ext .js,.ts,.tsx",
"lint:type": "tsc",
"lint:format": "prettier -w . -u --loglevel silent",
"test": "jest --passWithNoTests",
"test:watch": "yarn test --watch",
"test:cov": "yarn clean:cov && yarn test --coverage",
"build:dev": "yarn clean:dist && rollup -c",
"build:prod": "yarn clean:dist && yarn clean:size && rollup -c --environment BUILD:production",
"build:demo": "cd app && yarn && yarn build",
"clean:dist": "rimraf dist",
"clean:size": "rimraf .size-snapshot.json",
"clean:cov": "rimraf coverage",
"clean": "run-p clean:*",
"prepare": "husky install",
"semantic-release": "semantic-release --branches main"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier -w -u"
]
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^7.0.1",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-import-helpers": "^1.2.0",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.0.3",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.53.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^19.0.3",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": ">= 16.8.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}