-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
90 lines (90 loc) · 2.75 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
{
"name": "react-select-search",
"version": "4.1.8",
"description": "Lightweight select component for React",
"source": "src/index.js",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "src/index.d.ts",
"targets": {
"types": false
},
"sideEffects": false,
"scripts": {
"lint": "eslint src --ext .js --ext .jsx",
"test": "npm run build && size-limit && NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage --silent",
"coveralls": "npm test:coverage && cat ./coverage/lcov.info | coveralls",
"start": "storybook dev -p 6006",
"build": "parcel build --no-cache",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build --output-dir public",
"size": "size-limit",
"pub": "npm run build && npm publish",
"eslint": "eslint src --ext .jsx --ext .js"
},
"repository": {
"type": "git",
"url": "https://github.com/tbleckert/react-select-search.git"
},
"keywords": [
"react",
"select",
"js",
"search",
"react-component"
],
"author": "Tobias Bleckert ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/tbleckert/react-select-search/issues"
},
"homepage": "https://github.com/tbleckert/react-select-search",
"size-limit": [
{
"path": "dist/esm/index.js",
"limit": "3 kB"
}
],
"peerDependencies": {
"prop-types": "^15.8.1",
"react": "^18.0.1 || ^17.0.1",
"react-dom": "^18.0.1 || ^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@chromatic-com/storybook": "^2.0.2",
"@jest/globals": "^29.7.0",
"@size-limit/preset-small-lib": "^11.1.5",
"@storybook/addon-actions": "^8.3.2",
"@storybook/addon-essentials": "^8.3.2",
"@storybook/addon-links": "^8.3.2",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/addons": "^7.6.17",
"@storybook/react": "^8.3.2",
"@storybook/react-webpack5": "^8.3.2",
"babel-jest": "^29.7.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"coveralls": "^3.1.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.36.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-image-snapshot": "^6.4.0",
"parcel": "^2.12.0",
"prettier": "^3.3.3",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-test-renderer": "^18.3.1",
"react-transition-group": "^4.4.5",
"size-limit": "^11.1.5",
"storybook": "^8.3.2",
"storybook-dark-mode": "^4.0.2"
}
}