forked from ankita1010/react-combine-reducers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 910 Bytes
/
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
{
"name": "react-combine-reducers",
"version": "1.0.3",
"description": "A helper utility to apply combineReducers functionality in react useReducer hook for large scale applications",
"main": "index.js",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ankita1010/react-combine-reducers.git"
},
"keywords": [
"react",
"react-hooks",
"reducer",
"combine",
"reducers",
"hooks"
],
"author": "Ankita Chakraborty",
"license": "ISC",
"bugs": {
"url": "https://github.com/ankita1010/react-combine-reducers/issues"
},
"homepage": "https://github.com/ankita1010/react-combine-reducers#readme",
"dependencies": {
"@babel/polyfill": "^7.7.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4"
}
}