-
Notifications
You must be signed in to change notification settings - Fork 158
/
package.json
103 lines (103 loc) · 2.76 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
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "react-router-bootstrap",
"version": "0.26.3",
"description": "Integration between React Router and React-Bootstrap",
"files": [
"lib"
],
"main": "./lib/index.js",
"scripts": {
"bower-prepare": "babel-node scripts/bower-prepare.js",
"build": "rimraf lib && webpack-cli && npm run build-prod && babel src -d lib",
"build-prod": "webpack-cli --mode production --optimization-minimize",
"lint": "eslint src test *.js",
"prepublishOnly": "npm run build",
"release": "rollout",
"tdd": "jest --watch",
"test": "npm run lint && jest",
"visual-test": "webpack-dev-server --config webpack.visual.config.babel.js --open"
},
"repository": {
"type": "git",
"url": "git@github.com:react-bootstrap/react-router-bootstrap.git"
},
"keywords": [
"react",
"react-router",
"react-bootstrap"
],
"author": {
"name": "Matt Smith",
"email": "mtscout6@gmail.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/react-bootstrap/react-router-bootstrap/issues"
},
"homepage": "https://github.com/react-bootstrap/react-router-bootstrap",
"peerDependencies": {
"react": ">=16.13.1",
"react-router-dom": ">=6.0.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@4c/rollout": "^4.0.2",
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/register": "^7.18.6",
"@react-bootstrap/eslint-config": "^1.3.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.5",
"bootstrap": "^4.6.1",
"chai": "^4.3.6",
"colors": "^1.4.0",
"css-loader": "^6.7.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.32.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"file-loader": "^6.2.0",
"history": "^5.3.0",
"html-webpack-plugin": "^5.5.0",
"jasmine-enzyme": "^7.1.2",
"jest": "^26.6.3",
"prettier": "^2.7.1",
"react": "^16.14.0",
"react-bootstrap": "^1.6.5",
"react-dom": "^16.14.0",
"react-router-dom": "^6.3.0",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>test/setupTests.js"
],
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"publishConfig": {
"directory": "lib"
},
"release": {
"conventionalCommits": true
}
}