-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
81 lines (81 loc) · 2.35 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
{
"name": "react-bootstrap-country-select",
"version": "1.0.0",
"description": "A country select component with flag icons for React Bootstrap.",
"keywords": [
"react-bootstrap",
"react-component",
"react",
"bootstrap",
"country select",
"country dropdown"
],
"license": "MIT",
"private": false,
"repository": "[email protected]:jaywilz/react-bootstrap-country-select.git",
"author": "Jason Wilson <[email protected]>",
"main": "dist/index.js",
"dependencies": {
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": ">=17.0.2",
"react-bootstrap": "^1.6.1",
"react-dom": ">=17.0.2"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@rollup/plugin-node-resolve": "^13.0.2",
"@rollup/plugin-typescript": "^8.2.3",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.0",
"bootstrap": "^5.0.2",
"cross-env": "^7.0.3",
"node-sass": "^6.0.1",
"react": "^17.0.2",
"react-bootstrap": "^1.6.1",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"react-test-renderer": "^17.0.2",
"rollup": "^2.53.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-less": "^1.1.3",
"rollup-plugin-license": "^2.5.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-ts": "^1.4.0",
"typescript": "^4.3.5"
},
"scripts": {
"build": "BABEL_ENV=build NODE_ENV=production rollup -c",
"test": "cross-env BABEL_ENV=test NODE_ENV=test jest --no-cache",
"build:examples-umd": "BABEL_ENV=build NODE_ENV=examples rollup -c",
"build:pages": "node_modules/@babel/cli/bin/babel.js docs/js/examples.src.js --out-file docs/js/examples.js --presets=@babel/preset-env,@babel/preset-react"
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}