forked from ChoTotOSS/react-paginating
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.73 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
{
"name": "react-paginating",
"version": "1.0.2",
"description": "Simple, lightweight, flexible pagination component",
"main": "dist/index.js",
"typings": "typings/index.d.ts",
"author": "David Nguyen <[email protected]> ([email protected])",
"keywords": [
"react",
"react-component",
"pagination",
"paginate",
"paginator",
"pagination-components"
],
"dependencies": {},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=15"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"codecov": "^3.0.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-15": "^1.0.2",
"eslint": "^4.1.1",
"eslint-config-react-app": "^2.0.0",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-scripts": "1.0.11",
"react-test-renderer": "^15.6.1",
"rimraf": "^2.6.2",
"sinon": "^4.0.2"
},
"scripts": {
"prebuild": "rimraf dist/*",
"build": "babel src/Pagination --out-dir dist",
"test": "react-scripts test --env=jsdom",
"coverage": "npm test -- --coverage",
"eject": "react-scripts eject",
"eslint": "eslint ./src/**/*.js"
},
"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"
}