-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
77 lines (77 loc) · 1.9 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
{
"name": "redux-router-kit",
"version": "1.2.1",
"description": "Routing tools for React+Redux",
"main": "lib/index.js",
"scripts": {
"test": "ava test",
"prebuild": "rm -rf lib && mkdir -p lib",
"build": "babel src --out-dir lib && rollup -c",
"prepublish": "npm run build",
"patch-release": "npm version patch && npm publish && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zapier/redux-router-kit.git"
},
"keywords": [
"routing",
"router",
"redux",
"react"
],
"author": "Justin Deal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zapier/redux-router-kit/issues"
},
"homepage": "https://github.com/zapier/redux-router-kit#readme",
"devDependencies": {
"ava": "^0.13.0",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.7.2",
"eslint": "^2.5.3",
"eslint-plugin-react": "^4.2.3",
"jsdom": "^8.2.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"sinon": "^1.17.3"
},
"dependencies": {
"create-react-class": "15.6.3",
"history": "^2.0.1",
"path-to-regexp": "^1.2.1",
"prop-types": "^15.6.0",
"query-string": "^4.1.0",
"url-parse": "^1.1.1"
},
"peerDependencies": {
"react": ">= 16.9.0",
"react-dom": ">= 16.9.0",
"react-redux": ">= 7.0.0",
"redux": ">= 4.0.0"
},
"ava": {
"babel": {
"presets": [
"es2015",
"stage-2",
"react"
],
"retainLines": true
},
"require": [
"./test/helpers/setup-browser-env.js"
]
}
}