-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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": "@quicksilver0218/react-pagin",
"version": "1.3.2",
"description": "A lightweight element organizing component allowing high customization for pagination, implemented in React.",
"main": "dist",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc && uglifyjs --compress --mangle -o dist/index.js dist/index.js",
"format": "prettier --write \"src/**/*.tsx\"",
"lint": "eslint src/** --fix",
"prepublishOnly": "npm test && npm run lint && npm run build"
},
"keywords": [
"react",
"react-component",
"paginate",
"paginator",
"pagination",
"pagination-component",
"page-navigation",
"custom",
"customization"
],
"author": {
"name": "Quicksilver0218"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/react": "^17.0.22",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.26.0",
"jest": "^27.2.4",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3",
"uglify-js": "^3.14.2"
},
"peerDependencies": {
"react": "*"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Quicksilver0218/React-Pagin.git"
},
"bugs": {
"url": "https://github.com/Quicksilver0218/React-Pagin/issues"
},
"homepage": "https://github.com/Quicksilver0218/React-Pagin#readme",
"publishConfig": {
"access": "public"
}
}