-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.25 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
{
"name": "@ascodelife/react-context-provider-composer",
"version": "1.3.0",
"description": "Compose your react context provider to solve nested hell",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test:coverage":"jest --coverage",
"test": "jest"
},
"author": "ascodelife",
"private": false,
"license": "MIT",
"keywords": [
"npm",
"react",
"typescript",
"context"
],
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/enzyme": "^3.10.9",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.18",
"@types/react-dom": "^17.0.9",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"codecov": "^3.8.3",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"jest": "^27.2.0",
"ts-jest": "^27.0.5",
"typescript": "^4.3.5"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"setupFiles": [
"./src/jest.setup.js"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testEnvironment": "jsdom",
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}