-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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
{
"name": "@kubric/reducer-factory",
"description": "Redux reducers made declarative",
"version": "1.0.3",
"homepage": "https://github.com/cirbuk/reducer-factory",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "jest",
"test-watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cirbuk/reducer-factory.git"
},
"author": "Jophin Joseph",
"license": "MIT",
"bugs": {
"url": "https://github.com/cirbuk/reducer-factory/issues"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-function-bind": "7.2.0",
"@babel/plugin-proposal-object-rest-spread": "7.5.5",
"@babel/preset-env": "7.5.5",
"@babel/preset-typescript": "7.3.3",
"@bit/kubric.redux.reducks.utils": "0.0.4",
"babel-jest": "24.8.0",
"jest": "24.8.0",
"lodash": "4.17.14",
"redux": "3.7.2",
"rollup": "1.18.0",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.0.2",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "5.1.3",
"rollup-plugin-typescript2": "0.24.2",
"tslib": "1.10.0",
"typescript": "3.5.3"
},
"dependencies": {
"@kubric/litedash": "0.0.3",
"@kubric/reduxutils": "1.0.0",
"@kubric/resolver": "1.1.1"
}
}