-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.61 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-context-mutex",
"version": "2.1.1",
"description": "Use a mutex lock to prevent callback duplication, now used as a React hook",
"type": "module",
"main": "dist/react-context-mutex.js",
"module": "dist/react-context-mutex.es.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "jest",
"test-watch": "jest --watch",
"coverage": "codecov",
"lint": "tslint -p tsconfig.json",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run lint && npm run test && npm run clean && npm run build"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/marcveens/react-context-mutex.git"
},
"author": "Marc Veens <marcveens@hotmail.com> (http://marcveens.nl/)",
"bugs": {
"url": "https://github.com/marcveens/react-context-mutex/issues"
},
"homepage": "https://github.com/marcveens/react-context-mutex",
"license": "MIT",
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.1",
"@types/react": "^18.2.21",
"codecov": "^3.8.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nyc": "^15.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"rollup": "^3.29.2",
"rollup-plugin-typescript2": "^0.35.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"tslint": "^6.1.3",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0"
},
"keywords": [
"react",
"hooks",
"react-hooks",
"mutex"
]
}