-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.32 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
{
"name": "redux-url",
"version": "1.2.3",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "/~https://github.com/jedirandy/redux-url.git"
},
"license": "MIT",
"scripts": {
"flow": "flow check src",
"lint": "eslint src",
"build": "webpack",
"build-umd": "webpack --outputPath=./umd",
"test": "karma start"
},
"keywords": [
"redux",
"redux-middleware",
"middleware",
"url",
"router"
],
"files": [
"*.md",
"src",
"umd",
"dist"
],
"dependencies": {
"history": ">=3.0.0",
"qs": ">=6.0.0",
"url-pattern": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^8.1.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-polyfill": "^6.23.0",
"chai": "^3.5.0",
"eslint": "^3.16.0",
"eslint-plugin-react": "^6.10.0",
"flow-bin": "^0.126.1",
"karma": "^5.0.9",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-webpack": "^4.0.2",
"mocha": "^7.2.0",
"redux": "^3.6.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}