-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1009 Bytes
/
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
{
"name": "use-event-callback",
"version": "0.1.0",
"description": "React hook useEventCallback",
"main": "lib/es5/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run clean && npm run build:module && npm run build:es5",
"build:es5": "tsc --build tsconfig.es5.json",
"build:module": "tsc --build tsconfig.json",
"clean": "rimraf lib",
"test": "eslint . --ext ts && jest"
},
"keywords": [
"react",
"hooks",
"useEventCallback",
"useCallback"
],
"files": [
"lib"
],
"license": "ISC",
"peerDependencies": {
"react": ">=16.8"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/react": "^16.9.17",
"@types/react-test-renderer": "^16.9.1",
"@typescript-eslint/parser": "^2.15.0",
"eslint": "^6.8.0",
"jest": "^24.9.0",
"react": "^16.12.0",
"react-test-renderer": "^16.12.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.2.0",
"typescript": "~3.7.4"
}
}