-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.89 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
61
62
63
64
65
66
{
"name": "@wisersolutions/reducks",
"version": "0.5.1",
"description": "Tools for modular state management using `redux` and `redux-saga`",
"repository": {
"type": "git",
"url": "git+https://github.com/WiserSolutions/reducks"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": "Wiser Solutions, Inc.",
"license": "MIT",
"main": "./lib/index.js",
"module": "./es/index.js",
"files": [
"/es",
"/lib",
"index.d.ts"
],
"scripts": {
"format": "prettier --write \"src/**/*.{js,ts}\" --loglevel warn",
"lint": "eslint -f @wisersolutions/eslint-formatter-idea ./src",
"test": "jest 'src/'",
"build": "transpile-js",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@redux-saga/deferred": "^1.1.2",
"@wisersolutions/eslint-config": "^2.0.6",
"@wisersolutions/eslint-formatter-idea": "^1.0.8",
"@wisersolutions/transpile-js": "^0.0.19",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"jest": "^26.6.3",
"prettier": "^2.2.1"
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"@hon2a/icepick-fp": "^0.0.10",
"icepick": "^2.4.0",
"lodash.flatten": "^4.4.0",
"lodash.flowright": "^3.5.0",
"lodash.get": "^4.4.2",
"lodash.isarray": "^4.0.0",
"lodash.isempty": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.isfunction": "^3.0.9",
"lodash.isnil": "^4.0.0",
"lodash.isobject": "^3.0.2",
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1",
"lodash.mapvalues": "^4.6.0",
"lodash.merge": "^4.6.2",
"lodash.orderby": "^4.6.0",
"lodash.snakecase": "^4.1.1",
"lodash.topairs": "^4.3.0",
"lodash.topath": "^4.5.2",
"lodash.uniqueid": "^4.0.1",
"redux-saga": "^1.1.3"
},
"typings": "./index.d.ts"
}