-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.03 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
83
84
85
{
"name": "use-async-modal",
"version": "1.2.0",
"description": "Show promised based modal imperatively using hook for React.js.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc && cp ./src/index.css ./dist/index.css",
"test": "jest",
"format": "prettier --write src/**",
"lint": "eslint src/**",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Harasz/use-async-modal.git"
},
"tags": [
"react",
"hook",
"async",
"modal"
],
"keywords": [
"react",
"modal",
"hook",
"usemodal",
"useasyncmodal"
],
"author": "Jakub Sydor <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Harasz/use-async-modal/issues"
},
"homepage": "https://github.com/Harasz/use-async-modal#readme",
"devDependencies": {
"@testing-library/jest-dom": "5.11.9",
"@testing-library/react": "11.2.5",
"@testing-library/react-hooks": "5.0.3",
"@types/jest": "26.0.20",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.1",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"eslint": "7.20.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react-hooks": "4.2.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"ts-jest": "26.5.1",
"typescript": "4.1.5"
},
"dependencies": {
"eventelo": "0.1.3"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"jest": {
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
],
"setupFiles": [
"@testing-library/react/dont-cleanup-after-each"
],
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": ".+/__tests__/.+.test.tsx$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}