-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1017 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
42
{
"name": "use-selection-hook",
"version": "1.0.3",
"description": "React hook for keeping track of selected list of elements",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register test/index.ts",
"build": "tsc"
},
"keywords": [
"useSelection",
"selection",
"hook",
"react",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/apieceofbart/use-selection-hook.git"
},
"author": "Bartek Kozera",
"license": "ISC",
"peerDependencies": {
"react": ">= 16.9",
"react-dom": ">= 16.9"
},
"devDependencies": {
"@testing-library/react-hooks": "^5.1.0",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.2",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^16.14.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}