-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.44 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
{
"name": "react-sync-hooks",
"version": "1.0.0",
"description": "Useful hooks you can use in asynchronous processes.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"test": "jest --config jestconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/barisates/react-sync-hooks.git"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"react",
"hooks",
"sync"
],
"author": "barisates",
"license": "ISC",
"bugs": {
"url": "https://github.com/barisates/react-sync-hooks/issues"
},
"homepage": "https://github.com/barisates/react-sync-hooks#readme",
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@types/babel__core": "^7.1.20",
"@types/jest": "^29.2.3",
"@types/react": "^18.0.25",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.3.1",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^29.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
}
}