-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 4.07 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 4.07 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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "react-custom-search-list",
"version": "2.2.1",
"private": false,
"description": "A customizable React search input component with dynamic popup suggestions, allowing developers to create unique search experiences.",
"keywords": [
"react",
"search",
"custom search",
"search input",
"autocomplete",
"custom autocomplete",
"suggestions",
"custom suggestions",
"customizable",
"responsive",
"UI component",
"react component",
"dynamic suggestions",
"constant suggestions",
"react search",
"react searchBox",
"popup suggestions",
"user experience",
"interactive search",
"frontend"
],
"author": {
"name": "dev-javascript",
"email": "javascript.code.dev@gmail.com"
},
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dev-javascript/react-custom-search-list.git"
},
"homepage": "https://github.com/dev-javascript/react-custom-search-list#readme",
"bugs": {
"url": "https://github.com/dev-javascript/react-custom-search-list/issues"
},
"scripts": {
"watch": "set NODE_OPTIONS=--openssl-legacy-provider & run-p watch:*",
"watch:js": "cross-env WATCH=true npm run build:dist:dev",
"watch:scss": "sass --watch style/scss:style --no-source-map",
"build": "set NODE_OPTIONS=--openssl-legacy-provider & npm-run-all --parallel clean:* build:lib:* build:scss:* --parallel build:dist:*",
"build:dist:prod": "rollup -c",
"build:dist:dev": "webpack --config webpack.config.js --env=development",
"build:lib:cjs": "cross-env BABEL_OUTPUT=cjs babel src/ --out-dir lib/cjs/ --ignore **/__tests__,**/__mocks__,**/*.test.js,**/*.js.snap",
"build:lib:esm": "babel src/ --out-dir lib/esm/ --ignore **/__tests__,**/__mocks__,**/*.test.js,**/*.js.snap",
"clean:lib": "rimraf lib",
"clean:dist": "rimraf dist",
"build:scss:dev": "sass style/scss:style --no-source-map",
"build:scss:pro": "sass style/minified-scss:style --style compressed --no-source-map",
"prepublishOnly": "npm run build",
"test": "jest",
"lint": "eslint src",
"deploy": "gh-pages -d demo",
"precommit": "lint-staged",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build"
},
"peerDependencies": {
"@popperjs/core": ">=2.11.8",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/plugin-transform-react-jsx": "^7.24.7",
"@babel/plugin-transform-react-jsx-self": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/runtime-corejs3": "^7.24.7",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"gh-pages": "^6.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"prettier": "3.3.2",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-styleguidist": "^12.0.1",
"react-test-renderer": "16.9.0",
"rollup": "^4.18.0",
"style-loader": "^4.0.0",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"sass": "^1.82.0"
},
"dependencies": {},
"files": [
"dist",
"lib",
"src",
"style",
"index.d.ts",
"__tests__",
"CHANGELOG.md"
],
"license": "MIT",
"directories": {
"lib": "lib"
},
"types": "./index.d.ts",
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"jest-extended"
],
"collectCoverage": true,
"modulePathIgnorePatterns": [
"./src/__mock__",
"./src/__sandbox__"
]
},
"lint-staged": {
"*.js": "eslint"
}
}