-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "use-boolean",
"version": "1.0.1",
"description": "React hook for more convenient handling of boolean state",
"main": "./dist/index.js",
"scripts": {
"build": "tsc -t 'ES2015' --moduleResolution 'Node' -m 'commonjs' --outDir './dist' index.ts",
"test": "npm run build && jest index.test.js",
"test:watch": "npm run build && jest --watch index.test.js",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": "^16.8.0"
},
"keywords": [
"react",
"hooks",
"react-hooks",
"useful-hooks",
"boolean",
"helper"
],
"files": [
"dist",
"index.ts"
],
"author": {
"name": "Mykola Harmash",
"email": "[email protected]",
"url": "https://stse.io"
},
"repository": {
"type": "git",
"url": "[email protected]:mykolaharmash/use-boolean.git"
},
"homepage": "https://github.com/mykolaharmash/use-boolean",
"bugs": "https://github.com/mykolaharmash/use-boolean/issues",
"license": "MIT",
"private": false,
"devDependencies": {
"@testing-library/react-hooks": "^3.3.0",
"jest": "^26.1.0",
"react": "^16.13.1",
"react-test-renderer": "^16.13.1",
"typescript": "^3.9.6"
}
}