-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.64 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.64 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
{
"name": "react-dynamic-breadcrumb",
"version": "0.0.6",
"description": "Dynamic breadcrumbs for React.js, small and easy to use.",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "webpack --config ./webpack.config.dev.js --mode development && webpack-dev-server --config ./webpack.config.dev.js",
"build": "node_modules/.bin/babel src -d dist --copy-files"
},
"keywords": [
"breadcrumb",
"react",
"reactjs",
"react-through",
"dynamic"
],
"files": [
"dist",
"dist/lib",
"dist/BProvider.js",
"dist/BreadCrumb.js",
"dist/BreadCrumbItem.js",
"dist/index.css"
],
"repository": {
"type": "git",
"url": "https://github.com/isaurssaurav/react-dynamic-breadcrumb"
},
"author": "isaurssaurav",
"license": "ISC",
"dependencies": {
"react-through": "^1.1.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}