forked from tbleckert/react-select-search
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.51 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.51 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
{
"name": "react-select-search",
"version": "2.2.4",
"description": "Lightweight select component for React",
"main": "dist/esm/index.js",
"types": "src/index.d.ts",
"scripts": {
"lint": "eslint src --ext .js --ext .jsx",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage --silent",
"coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls",
"start": "start-storybook -p 6006",
"bundle": "npx babel --config-file=./babel.config.esm.js src --out-dir dist/esm | npx babel --config-file=./babel.config.js src --out-dir dist/cjs",
"storybook": "start-storybook -p 6006",
"build": "build-storybook --output-dir public"
},
"repository": {
"type": "git",
"url": "https://github.com/tbleckert/react-select-search.git"
},
"keywords": [
"react",
"select",
"js",
"search",
"react-component"
],
"author": "Tobias Bleckert (hola@tobiasbleckert.se)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tbleckert/react-select-search/issues"
},
"homepage": "https://github.com/tbleckert/react-select-search",
"peerDependencies": {
"react": "^16.8.4",
"react-dom": "^16.8.4",
"prop-types": "^15.6.2"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.11.5",
"@storybook/addon-actions": "^6.0.4",
"@storybook/addon-links": "^6.0.4",
"@storybook/addon-storysource": "^6.0.4",
"@storybook/addons": "^6.0.4",
"@storybook/react": "^6.0.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"browser-env": "^3.3.0",
"coveralls": "^3.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"fuse.js": "^3.4.5",
"jest": "^26.0.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"react-transition-group": "^4.4.1"
},
"dependencies": {},
"optionalDependencies": {
"fuse.js": "^3.4.5"
}
}