-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
{
"name": "react-hook-utilities",
"version": "0.5.0",
"description": "Utilitarian React hooks",
"author": "Flávio Caetano (@fjcaetano)",
"license": "MIT",
"keywords": [
"react",
"hook",
"hoc",
"compose",
"react-native",
"recompose"
],
"homepage": "https://github.com/fjcaetano/react-hook-utilities.git",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/fjcaetano/react-hook-utilities.git"
},
"scripts": {
"build": "tsc && prettier --check 'dist/**/*' --write",
"test": "jest --coverage",
"lint": "prettier --check 'src/**/*'",
"docs": "typedoc --out docs/$npm_package_version && scripts/gen-docs-index.sh $npm_package_version",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"dependencies": {
"react": "^16"
},
"devDependencies": {
"@testing-library/react-hooks": "^2.0.1",
"@types/jest": "^24.0.18",
"@types/react": "^16.9.2",
"commitlint": "^8.2.0",
"conventional-changelog-cli": "^2.0.25",
"husky": "^3.0.5",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"react-test-renderer": "^16.9.0",
"ts-jest": "^24.1.0",
"typedoc": "^0.16.9",
"typescript": "^3.7"
}
}