-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.76 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.76 KB
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
{
"name": "react-recompose-pagination",
"version": "0.1.2",
"description": "Fully customizable react pagination component",
"main": "lib/index.js",
"scripts": {
"build:lib": "rm -rf lib && mkdir lib && babel src -d lib",
"build:standalone": "cross-env BABEL_ENV=production webpack",
"build": "yarn build:lib && yarn build:standalone",
"lint": "eslint -c .eslintrc src/*.js",
"lint:fix": "eslint --fix -c .eslintrc src/*.js"
},
"pre-commit": [
"lint"
],
"keywords": [
"React",
"Pagination",
"Recompose"
],
"engines": {
"node": ">= 4.7.0"
},
"repository": {
"type": "git",
"url": "git://github.com/kidjp85/react-recompose-pagination.git"
},
"author": "Phuc Nguyen Hoang<phucnguyenhoang1985@gmail.com>",
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "15.6.0",
"recompose": "^0.26.0"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.12",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"cross-env": "^5.1.1",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.0.1",
"eslint-config-prettier": "2.3.0",
"eslint-plugin-import": "2.6.1",
"eslint-plugin-jsx-a11y": "5.0.3",
"eslint-plugin-prettier": "2.1.2",
"eslint-plugin-react": "7.1.0",
"pre-commit": "^1.2.2",
"prettier": "1.8.1",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0",
"regenerator-runtime": "0.11.0",
"webpack": "^3.10.0"
},
"license": "MIT"
}