-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.71 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
{
"name": "react-component-instance",
"version": "0.0.156",
"description": "Get a React class component instance from its DOM Element",
"keywords": [
"react",
"class",
"component",
"instance"
],
"main": "./src/index.mjs",
"type": "module",
"types": "./index.d.mts",
"author": {
"name": "Jonathan Perry for Modern Poacher Limited",
"email": "jonathanperry@modernpoacher.com",
"url": "https://modernpoacher.com"
},
"license": "ISC",
"engines": {
"node": ">=18.12.0 <=21.7.3 || >=22.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/modernpoacher/react-component-instance.git"
},
"scripts": {
"lint": "eslint",
"lint:fix": "npm run lint -- --fix",
"prepare": "node husky.mjs",
"test": "NODE_ENV=test jest"
},
"devDependencies": {
"@babel/core": "7.29.7",
"@babel/eslint-parser": "7.29.7",
"@babel/preset-env": "7.29.7",
"@babel/preset-react": "7.29.7",
"@sequencemedia/eslint-config-standard": "^0.2.107",
"@sequencemedia/eslint-config-typescript": "^0.1.182",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/debug": "^4.1.13",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"core-js": "^3.49.0",
"eslint": "9.38.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.7.0",
"husky": "^9.1.7",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"imports": {
"#react-component-instance": "./src/index.mjs",
"#react-component-instance/utils": "./src/utils/index.mjs"
},
"exports": {
".": "./src/index.mjs"
}
}