-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 844 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 844 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
30
31
32
33
34
35
{
"name": "@poki/rx-api",
"version": "1.5.1",
"repository": "https://github.com/poki/rx-api",
"description": "Reactive API system for redux-observable",
"main": "lib/rx-api.min.js",
"module": "es/rx-api.min.js",
"license": "MIT",
"files": [
"README.md",
"es/"
],
"scripts": {
"build": "yarn rollup -c",
"test": "yarn run jest"
},
"author": "Prokos <awsumthx@gmail.com>",
"dependencies": {
"object-hash": "^3.0.0"
},
"peerDependencies": {
"react-redux": "^7.1.1 || ^8.0.0 || ^9.0.0",
"redux-observable": "^1.2.0 || ^2.0.0",
"rxjs": "^6.5.3 || ^7.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.6.0",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"jest": "^30.3.0",
"rollup": "^4.60.3",
"rollup-plugin-terser": "^7.0.2"
}
}