-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.28 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-hor",
"version": "0.0.7",
"description": "Higher-order Reducers for Redux",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/pwlmaciejewski/redux-hor.git",
"author": "Paweł Maciejewski <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "tslint --project .",
"build": "tsc -p .",
"test": "jest",
"clean": "rm -rf lib"
},
"peerDependencies": {
"redux": "^4.0.0"
},
"devDependencies": {
"@types/jest": "~26.0.0",
"@types/object-hash": "^1.2.0",
"codecov": "^3.1.0",
"jest": "~26.1.0",
"jest-cli": "~26.1.0",
"jest-junit": "^9.0.0",
"ts-jest": "~23.0.1",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.0.1"
},
"jest": {
"verbose": true,
"transform": {
".ts": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"reporters": [
"default",
"jest-junit"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"dependencies": {
"redux": "^4.0.0"
},
"keywords": [
"redux",
"higher-order function",
"FP",
"utility"
],
"files": [
"lib/"
]
}