-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
97 lines (97 loc) · 2.62 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react-paginating",
"version": "1.4.0",
"description": "Simple, lightweight, flexible pagination component",
"main": "dist/react-paginating.umd.js",
"module": "dist/react-paginating.esm.js",
"typings": "typings/index.d.ts",
"author": "David Nguyen <dzungnguyen179@gmail.com> (dzungnguyen179@gmail.com)",
"files": [
"dist",
"typings",
"flow-typed"
],
"keywords": [
"accessibility",
"WAI-ARIA",
"react",
"react-component",
"pagination",
"paginate",
"paginator",
"pagination-components"
],
"dependencies": {
"paging-algorithm": "^1.0.1"
},
"peerDependencies": {
"prop-types": ">=15"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"all-contributors-cli": "^6.14.0",
"cypress": "^3.1.5",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "^6.6.0",
"eslint-config-react-app": "^5.1.0",
"eslint-plugin-flowtype": "^4.5.2",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "^0.119.0",
"flow-coverage-report": "0.7.0",
"prop-types": "^15.5.10",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-scripts": "^3.1.1",
"react-test-renderer": "^16.8.2",
"rimraf": "^3.0.0",
"rollup": "^2.0.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-terser": "^5.1.2",
"sinon": "^9.0.1"
},
"scripts": {
"prebuild": "rimraf dist/*",
"build": "rollup --config",
"postbuild": "BUILD_MINIFY=true rollup --config",
"start": "react-scripts start",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"eslint": "eslint ./src/**/*.js",
"test:flow": "flow",
"test:flow:coverage": "flow-coverage-report",
"validate": "npm run test:flow:coverage && CI=true npm run test",
"cypress:open": "cypress open",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ChoTotOSS/react-paginating.git"
},
"bugs": {
"url": "https://github.com/ChoTotOSS/react-paginating/issues"
},
"homepage": "https://github.com/ChoTotOSS/react-paginating/blob/master/README.md",
"flow-coverage-report": {
"includeGlob": [
"test/**/*.js"
],
"threshold": 90,
"type": [
"text"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}