-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 772 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 772 Bytes
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
{
"name": "create-reducer-actions",
"description": "Create your next immutable state by mutating the current one",
"version": "1.0.2",
"repository": {
"type": "git",
"url": "git+https://github.com/christiangenco/createReducerActions.git"
},
"keywords": ["redux", "react"],
"author": "Christian Genco",
"bugs": {
"url": "https://github.com/christiangenco/createReducerActions/issues"
},
"homepage": "https://github.com/christiangenco/createReducerActions",
"main": "src/createReducerActions.js",
"license": "MIT",
"scripts": {
"test": "jest",
"jest": "jest --watch",
"coverage": "jest --coverage"
},
"dependencies": {
"immer": "^1.1.3"
},
"devDependencies": {
"jest": "^22.4.2",
"redux": "^3.7.2"
}
}