generated from nekogd/react-hook-npm-publish-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.42 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
{
"name": "@webfox/react-use-pagination-hook",
"version": "0.0.0",
"description": "A React hook to provide everything you need to power your pagination UI",
"author": "hailwood",
"license": "Apache-2.0",
"repository": "webfox/react-use-pagination-hook",
"keywords": [
"react",
"react hooks",
"typescript",
"pagination"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "jest"
},
"peerDependencies": {
"react": ">= 16.8.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@testing-library/react": "^11.2.3",
"@testing-library/react-hooks": "^5.0.3",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.0",
"babel-loader": "^8.2.2",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-is": "^17.0.1",
"react-test-renderer": "^17.0.1",
"rollup": "^2.38.1",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
}
}