forked from szmslab/material-ui-flat-pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.87 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
{
"name": "material-ui-flat-pagination",
"description": "A pagination component for Material-UI using Button component.",
"version": "4.0.0",
"author": "szmslab <[email protected]> (https://github.com/szmslab)",
"bugs": {
"url": "https://github.com/szmslab/material-ui-flat-pagination/issues"
},
"dependencies": {
"classnames": "^2.2.6"
},
"devDependencies": {
"@material-ui/core": "^4.4.0",
"@types/classnames": "^2.2.9",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.18",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"coveralls": "^3.0.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.9.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0",
"typescript": "^3.6.2"
},
"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/hosseinalipour/material-ui-flat-pagination#readme",
"keywords": [
"pagination",
"material-ui",
"react"
],
"license": "MIT",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hosseinalipour/material-ui-flat-pagination.git"
},
"scripts": {
"build": "rimraf lib && tsc",
"lint": "tslint src/**/*.ts{,x}",
"jest": "jest --config=jest.config.json",
"test": "jest --config=jest.config.json && coveralls < ./coverage/lcov.info",
"prepublish": "tsc"
},
"types": "./lib/index.d.ts"
}