-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.54 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
{
"name": "redux-cool",
"version": "1.1.1",
"description": "Redux Cool is an awesome tiny package that allows you to easily and intuitively write redux logic.",
"license": "MIT",
"homepage": "https://redux-cool.js.org",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Redux-Cool/redux-cool"
},
"bugs": {
"url": "https://github.com/Redux-Cool/redux-cool/issues",
"email": "[email protected]"
},
"keywords": [
"redux-cool",
"redux-toolkit",
"redux",
"action",
"reducer",
"immer",
"immutable",
"actions-creator",
"reducers-creator"
],
"author": {
"name": "Ruben Arushanyan",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/ruben-arushanyan-42bba9235/"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/Ruben-Arushanyan"
},
"scripts": {
"build": "node scripts/build.js",
"test": "npm run to-pack --if-present; node scripts/test.js",
"to-pack": "npm run build --if-present; node scripts/to-pack.js",
"to-npm-publish": "npm run to-pack --if-present; node scripts/to-npm-publish.js"
},
"packableFiles": [
"package.json",
"README.md",
"LICENSE",
"dist/."
],
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"jest": "^26.6.3",
"redux": "^4.0.5"
},
"dependencies": {
"actions-creator": "^1.1.0",
"reducers-creator": "^1.1.0"
},
"sideEffects": false
}