-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.91 KB
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
{
"name": "@aboutbits/react-pagination",
"version": "0.0.8",
"description": "Pagination hooks for React",
"sideEffects": false,
"scripts": {
"build": "npm run build:node && npm run build:esm",
"build:node": "tsc",
"build:esm": "tsc --project tsconfig.esnext.json",
"lint": "eslint --ext js,ts,tsx src",
"lint:fix": "npm run lint -- --fix",
"test": "jest --verbose --passWithNoTests",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"version": "npm run test && npm run lint && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aboutbits/react-pagination"
},
"private": false,
"keywords": [
"react",
"pagination",
"hooks"
],
"author": "About Bits",
"license": "MIT",
"bugs": {
"url": "https://github.com/aboutbits/react-pagination/issues"
},
"homepage": "https://github.com/aboutbits/react-pagination#readme",
"files": [
"readme.md",
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@testing-library/react-hooks": "^5.1.3",
"@types/jest": "^26.0.22",
"@types/react": "^17.0.3",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.4",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"next": "^11.0.1",
"next-router-mock": "^0.6.1",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0"
}
}