-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "react-router-query-middleware",
"version": "3.1.0",
"description": "This middleware adds query object to router reducer when using react-router v4 or higher",
"main": "build/index.js",
"files": [
"build",
"README.md"
],
"dependencies": {
"lodash.set": "^4.3.2",
"query-string": "^6.0.0"
},
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"start": "webpack --watch",
"build": "webpack",
"update": "npm run build && npm version minor && git add . && git commit -m \"update version\" && git push origin master && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/saltas888/react-router-query-middleware"
},
"author": {
"url": "https://github.com/saltas888/react-router-query-middleware",
"name": "Dimitrios Saltaferis",
"email": "[email protected]"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "7.3.2",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"babel-loader": "^8.0.5",
"jest": "^24.9.0",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
}
}