-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.78 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": "@josephzhou/ms-pagination",
"version": "1.2.1",
"description": "Pagination component",
"main": "./lib/PaginationComponent.js",
"scripts": {
"build": "tsc && webpack",
"test": "jest --coverage",
"watch": "concurrently --kill-others \"tsc -w\" \"webpack --watch\""
},
"peerDependencies": {
"@types/react": "^16.8.19",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/react-test-renderer": "^16.8.2",
"@types/rewire": "^2.5.28",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"concurrently": "^4.1.1",
"css-loader": "^3.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"material-ui": "^0.20.2",
"path": "^0.12.7",
"prop-types": "^15.6.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rewire": "^4.0.1",
"style-loader": "^0.23.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
},
"author": {
"name": "Joseph Zhou",
"email": "[email protected]",
"url": "http://piggymeow.com/"
},
"license": "MIT",
"dependencies": {
"@types/lodash": "^4.14.134",
"lodash": "^4.17.11"
},
"keywords": [
"pagination",
"material pagination",
"typescript pagination",
"page",
"pagination component"
],
"bugs": {
"url": "https://github.com/ZYMoridae/ms-pagination/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/ZYMoridae/ms-pagination.git"
}
}