-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.38 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
{
"name": "@moxy/redux-await-actions",
"version": "1.0.2",
"description": "Waits for specific actions to be dispatched or a timeout expires.",
"keywords": [
"redux",
"test",
"mock",
"action",
"wait",
"timeout"
],
"main": "lib/index.js",
"scripts": {
"test": "jest",
"lint": "eslint --ignore-path .gitignore .",
"prerelease": "npm t && npm run lint",
"release": "standard-version",
"postrelease": "git push --follow-tags origin HEAD && conventional-github-releaser -p angular"
},
"author": {
"name": "André Costa Lima",
"email": "[email protected]",
"url": "https://andrecostalima.dev"
},
"repository": "moxystudio/redux-await-actions",
"license": "MIT",
"engines": {
"node": ">=12"
},
"files": [
"lib"
],
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@moxy/eslint-config-base": "^13.0.3",
"@moxy/eslint-config-jest": "^13.0.3",
"@moxy/jest-config-base": "^5.0.0",
"conventional-github-releaser": "^3.1.5",
"eslint": "^7.6.0",
"husky": "^4.3.7",
"jest": "^26.6.0",
"jest-config": "^25.1.0",
"lint-staged": "^10.5.3",
"redux": "^4.0.5",
"redux-mock-store": "^1.5.4",
"redux-thunk": "^2.3.0",
"standard-version": "^9.1.0"
},
"dependencies": {
"jest-diff": "^26.6.2",
"lodash": "^4.17.20"
}
}