-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.84 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
74
75
76
77
78
79
80
81
82
{
"name": "redux-root-saga",
"version": "1.1.4",
"description": "Easy and configurable redux-saga execution management.",
"keywords": [
"nodejs",
"redux",
"redux-saga",
"typescript"
],
"homepage": "https://github.com/MichaelHettmer/redux-root-saga#readme",
"bugs": {
"url": "https://github.com/MichaelHettmer/redux-root-saga/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MichaelHettmer/redux-root-saga.git"
},
"license": "MIT",
"author": "Michael Hettmer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"commitlint": "commitlint",
"commitlint:ci": "commitlint-circle",
"lint": "eslint . --ext '.js,.jsx,.ts,.tsx,.json,.jsonc'",
"lint:ci": "npm run lint -- --format junit --output-file ./reports/eslint/results.xml",
"lint:circleci": "docker run -w /data --rm -v $(pwd):/data circleci/circleci-cli:0.1.6949-alpine config validate",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:ci": "CI=true JEST_JUNIT_OUTPUT_DIR=./reports/jest JEST_JUNIT_OUTPUT_NAME=results.xml npm run test:coverage --runInBand --reporters=\"default\" --reporters=\"jest-junit\"",
"test:coverage": "npm run test -- --coverage --watchAll=false",
"validate": "npm-run-all lint test build"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.1",
"@testing-library/react-hooks": "7.0.2",
"@types/jest": "27.4.0",
"@types/react": "17.0.39",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"chokidar-cli": "2.1.0",
"commitlint-circle": "1.0.0",
"dot-json": "1.2.2",
"eslint": "8.8.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-json-format": "2.0.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react-hooks": "4.3.0",
"husky": "4.3.8",
"jest": "27.5.1",
"jest-junit": "13.0.0",
"jest-mock-console": "1.2.3",
"lint-staged": "10.5.4",
"nodegit": "0.27.0",
"npm-run-all": "4.1.5",
"prettier": "2.5.1",
"react": "17.0.2",
"react-test-renderer": "17.0.2",
"redux-saga": "1.1.3",
"redux-saga-test-plan": "4.0.4",
"semantic-release": "19.0.0",
"shelljs": "0.8.5",
"ts-jest": "27.1.3",
"typescript": "4.5.5"
},
"peerDependencies": {
"redux-saga": ">=1.0.5"
},
"engines": {
"node": ">=8.0.0"
}
}