This repository was archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.74 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
64
65
{
"name": "@jonkoops/use-promise",
"version": "3.1.0",
"description": "Making Promises in your components a breeze 🌬️",
"type": "module",
"sideEffects": false,
"files": [
"lib",
"guides"
],
"main": "./lib/usePromise.js",
"exports": "./lib/usePromise.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rimraf lib && tsc",
"lint": "eslint . --ext .ts,.tsx",
"test": "TS_NODE_PROJECT=tsconfig.test.json jest --coverage",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonkoops/use-promise.git"
},
"keywords": [
"react",
"react-hooks",
"promise"
],
"author": "Jon Koops <jonkoops@gmail.com>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/jonkoops/use-promise/issues"
},
"homepage": "https://github.com/jonkoops/use-promise#readme",
"peerDependencies": {
"react": "^17 || ^18"
},
"devDependencies": {
"@jest/globals": "^29.0.1",
"@testing-library/react": "^14.0.0",
"@types/node": "^20.1.0",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.0.1",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-testing-library": "^6.0.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.1",
"prettier": "^3.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.0.1",
"ts-node": "^10.0.0",
"typescript": "^5.0.2"
}
}