-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.85 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "use-network-connection",
"version": "0.0.0-development",
"description": "A custom React hook that let's you know if the network connection status of the client application.",
"author": "ananta",
"license": "Apache-2.0",
"repository": "ananta/use-network-connection",
"main": "dist/index.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"commit": "git-cz",
"build": "rollup -c",
"start": "rollup -c -w",
"test": "jest",
"semantic-release": "semantic-release"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"devDependencies": {
"@testing-library/react-hooks": "^3.4.1",
"@types/jest": "^26.0.14",
"@types/react": "^16.3.13",
"@types/react-dom": "^16.0.5",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"eslint-plugin-react-hooks": "^4.0.8",
"ghooks": "^2.0.4",
"jest": "^26.4.2",
"network-information-types": "^0.1.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.13.1",
"rollup": "^1.29.0",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-typescript2": "^0.25.3",
"rollup-plugin-uglify": "^6.0.4",
"semantic-release": "^17.1.2",
"ts-jest": "^26.1.3",
"typescript": "^3.8.3"
},
"files": [
"dist"
],
"keywords": [
"react",
"react hooks",
"typescript",
"npm"
],
"dependencies": {
"prop-types": "^15.7.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run test"
}
}
}