-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.55 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
{
"name": "react-custom-events",
"version": "1.1.1",
"description": "A react layer for easily utilizing CustomEvent API",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "jest",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HarshRohila/react-custom-events.git"
},
"author": "Harsh Rohila",
"license": "MIT",
"bugs": {
"url": "https://github.com/HarshRohila/react-custom-events/issues"
},
"homepage": "https://github.com/HarshRohila/react-custom-events#readme",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@testing-library/dom": "^8.5.0",
"@testing-library/react": "^12.1.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"babel-core": "^6.26.3",
"babel-jest": "^27.1.1",
"babel-runtime": "^6.26.0",
"jest": "^27.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.10.4",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^27.0.5",
"typescript": "^3.9.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"files": [
"dist"
],
"keywords": [
"react",
"events",
"custom events",
"event emitter",
"useCustomEventListener",
"emitCustomEvent",
"CustomEvent"
],
"dependencies": {}
}