-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.56 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
{
"name": "react-weblineindia-dropdown",
"version": "1.0.2",
"description": "ReactJS Dropdown Component is a feature rich select / dropdown / typeahead component. It provides a default template that fits most use cases for a filterable select dropdown.",
"author": "weblineindia",
"license": "MIT",
"repository": "https://github.com/weblineindia/ReactJS-Dropdown",
"homepage": "https://www.weblineindia.com/software-development-resources.html",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"engines": {
"node": ">=10"
},
"keywords": [
"react-weblineindia-dropdown",
"react-dropdown",
"reactjs-dropdown",
"dropdown-component",
"react-select",
"reactjs-select"
],
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"prop-types": ">=15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.3.0",
"babel-loader": "^8.0.6",
"babel-plugin-emotion": "^11.0.0",
"babel-plugin-transform-dynamic-import": "^2.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-preset-minify": "^0.5.1",
"coveralls": "^3.0.9",
"css-loader": "^3.4.1",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"jest": "^25.3.0",
"jest-emotion": "^10.0.27",
"prettier": "1.18.2",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"replace": "^1.1.3",
"style-loader": "^3.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"files": [
"dist"
],
"dependencies": {
"@emotion/core": "^11.0.0",
"@emotion/styled": "^11.11.0"
}
}