-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.02 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.02 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@delvefore/sagasauce",
"version": "1.1.0",
"description": "Sauce for Redux Sagas based on reduxsauce",
"main": "dist/index.js",
"repository": "https://github.com/DelveFore/sagasauce.git",
"author": "John Bailey <641367+johntimothybailey@users.noreply.github.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "yarn build:commonjs",
"build:commonjs": "babel src --out-dir dist",
"test": "jest",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage",
"test:coverage-open": "yarn test:coverage && open coverage/lcov-report/index.html",
"lint": "eslint src tests",
"lint:fix": "yarn lint --fix",
"prepublishOnly": "yarn build",
"release": "yarn build && semantic-release"
},
"files": [
"dist",
"README.md",
"src"
],
"peerDependencies": {
"redux": "4.x",
"reduxsauce": "1.x"
},
"dependencies": {
"lodash": "^4.17.20",
"redux": "^4.0.5",
"reduxsauce": "^1.2.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/eslint-parser": "^7.11.5",
"@babel/eslint-plugin": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/runtime": "^7.11.2",
"@semantic-release/git": "^9.0.0",
"babel-jest": "^26.3.0",
"cross-env": "^7.0.2",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.4.2",
"prettier": "^2.1.1",
"redux-saga": "^1.1.3",
"redux-saga-tester": "^1.0.874",
"semantic-release": "^17.1.1"
},
"jest": {
"testMatch": [
"<rootDir>/tests/**/*.test.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/tests/Setup.js"
],
"moduleNameMapper": {
"^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "identity-obj-proxy"
},
"transform": {
"^.+\\.(t|j)s$": "babel-jest"
},
"setupFiles": [
"<rootDir>/tests/Setup"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/node_modules/**",
"!**/coverage/**",
"!**/dist/**"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": "package.json",
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}