-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 1.8 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
67
68
69
70
71
72
73
{
"name": "redux-entity",
"version": "8.0.20",
"description": "A predictable approach to managing domain entities in Redux.",
"main": "./lib/index.js",
"typings": "./index.d.ts",
"scripts": {
"build": "npm run clean && npm run compile",
"compile": "tsc",
"test": "jest --coverage",
"coveralls": "jest --coverage && coveralls < coverage/lcov.info",
"test:watch": "jest --coverage --watchAll",
"clean": "rm -rf ./lib",
"example": "node example.js"
},
"files": [
"/lib",
"index.d.ts"
],
"engines": {
"node": ">= 10.0.0",
"npm": ">= 6.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": [
"last 2 versions",
"ie 9-11"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mikechabot/redux-entity.git"
},
"keywords": [
"redux",
"redux-thunk",
"asynchronous state management",
"state management",
"react state"
],
"author": "Mike Chabot",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikechabot/redux-entity/issues"
},
"homepage": "https://github.com/mikechabot/redux-entity#readme",
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/redux-mock-store": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"coveralls": "^3.1.0",
"eslint": "^7.4.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.2.5",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"redux-mock-store": "^1.5.4",
"ts-jest": "^26.1.1",
"typescript": "^3.9.6"
},
"dependencies": {
"redux-thunk": "^2.3.0",
"redux": "^4.0.5"
}
}