-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
64 lines (64 loc) · 1.77 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
{
"name": "react-merge-refs",
"description": "React utility to merge refs.",
"version": "2.1.1",
"sideEffects": false,
"type": "module",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
}
},
"keywords": [
"react",
"utility",
"ref"
],
"author": "Greg Bergé <berge.greg@gmail.com>",
"license": "MIT",
"repository": "github:gregberge/react-merge-refs",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gregberge"
},
"scripts": {
"build": "rm -rf dist && rollup -c",
"format": "prettier --write .",
"lint": "eslint . && prettier --check .",
"prepublishOnly": "npm run build",
"release": "standard-version && conventional-github-releaser --preset angular",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.5.0",
"codecov": "^3.8.3",
"conventional-github-releaser": "^3.1.5",
"esbuild": "^0.17.19",
"eslint": "^8.40.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.21.7",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"standard-version": "^9.5.0",
"typescript": "^5.0.4"
}
}