-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2 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
{
"name": "cli-react-redux",
"version": "1.4.0",
"description": "React Redux CLI",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-helpers/cli-react-redux"
},
"keywords": [
"React",
"Redux",
"CLI",
"create-react-app",
"code generation",
"unit tests generation",
"e2e tests generation",
"Sagas",
"Reselect"
],
"author": "Sander Mets <sandermets0@gmail.com> (https://bitbucket.org/sandermets)",
"contributors": [
"Kaspar Vihm <kaspar.vihm@gmail.com> (https://github.com/kasparvihm)"
],
"license": "MIT",
"bin": {
"cli-react-redux": "./bin/cli-react-redux"
},
"engines": {
"node": ">= 8.0.0"
},
"bugs": {
"url": "https://github.com/react-helpers/cli-react-redux/issues"
},
"homepage": "https://github.com/react-helpers/cli-react-redux#readme",
"dependencies": {
"fs-extra": "^5.0.0"
},
"devDependencies": {
"babel-eslint": "^8.0.2",
"eslint": "^4.12.1",
"eslint-plugin-node": "^5.2.1",
"jest": "^20.0.4",
"jest-environment-node": "^20.0.3"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,mjs}"
],
"coveragePathIgnorePatterns": [
"<rootDir>/src/index.js",
"<rootDir>/src/setupTests.js",
"<rootDir>/src/registerServiceWorker.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 0
}
},
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,mjs}",
"<rootDir>/src/**/?(*.)(spec|test).{js,jsx,mjs}"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web"
},
"moduleFileExtensions": [
"web.js",
"mjs",
"js",
"json",
"web.jsx",
"jsx",
"node"
]
}
}