-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.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
{
"name": "driver-pattern",
"version": "1.0.6",
"Author": "Mor Shemesh",
"description": "Driver pattern for dynamically creating test drivers",
"keywords": ["react", "redux", "typescript", "jest", "tdd", "bdd"],
"main": "dist/lib.js",
"files": [ "dist" ],
"homepage": "https://github.com/morsh/driver-pattern",
"license": "MIT",
"peerDependencies": {
"react": ">= 16.14.0",
"react-dom": ">= 16.14.0"
},
"devDependencies": {
"@reduxjs/toolkit": "^1.8.1",
"@testing-library/react": "^12.0.0",
"@types/chance": "^1.1.3",
"@types/jest": "^29.5.2",
"@types/react": "^16.14.0",
"@types/react-dom": "^16.9.0",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^3.1.0",
"chance": "^1.1.11",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-redux": "^8.0.1",
"react-scripts": "^4.0.3",
"eslint": "^7.32.0",
"typescript": "^4.4.2"
},
"scripts": {
"start": "react-scripts start",
"build": "tsc -p tsconfig.lib.json",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}