-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
69 lines (69 loc) · 1.94 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
{
"name": "material-ui-flat-pagination",
"description": "A pagination component for Material-UI using Button component.",
"version": "4.1.2",
"author": "szmslab <[email protected]> (https://github.com/szmslab)",
"bugs": {
"url": "https://github.com/szmslab/material-ui-flat-pagination/issues"
},
"dependencies": {
"classnames": "^2.3.1"
},
"devDependencies": {
"@material-ui/core": "^4.11.4",
"@types/classnames": "^2.3.1",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.13",
"@types/react-dom": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"coveralls": "^3.1.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"peerDependencies": {
"@material-ui/core": ">=4.0.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"files": [
"lib",
"LICENSE",
"package.json",
"README.md"
],
"homepage": "https://github.com/szmslab/material-ui-flat-pagination#readme",
"keywords": [
"pagination",
"material-ui",
"react"
],
"license": "MIT",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/szmslab/material-ui-flat-pagination.git"
},
"scripts": {
"build": "rimraf lib && tsc",
"lint": "eslint src/ --ext .ts,.tsx",
"jest": "jest --config=jest.config.json",
"test": "jest --config=jest.config.json && coveralls < ./coverage/lcov.info"
},
"types": "./lib/index.d.ts"
}