-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.6 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
{
"name": "@dyljhd/use-effect-debugger",
"version": "1.2.1",
"description": "A type-safe React hook for debugging purposes that wraps around the useEffect hook, which returns the dependancies that changed on each iteration of the effect within the console.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"pack": "npm pack",
"link": "npm link",
"test": "jest",
"test:silent": "jest --silent --verbose",
"test:watch": "jest --watch",
"tsc": "tsc --p ./tsconfig.build.json",
"build:cleanup": "rimraf ./dist",
"build": "npm run build:cleanup && npm run tsc",
"publish": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dyljhd/use-effect-debugger.git"
},
"bugs": {
"url": "https://github.com/dyljhd/use-effect-debugger/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"useEffectDebugger",
"useEffect",
"React",
"debug",
"what",
"dependencies",
"deps",
"changed"
],
"author": "Dylan Delorie",
"license": "Unlicense",
"peerDependencies": {
"react": "^16.8 || ^17 || ^18"
},
"devDependencies": {
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.4",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"prettier": "^3.0.3",
"react": "^18.2.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}