forked from wwwaiser/react-js-pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.45 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
{
"name": "react-js-pagination",
"version": "1.1.14",
"description": "Simple, easy to use component for pagination. Compatible with bootstrap paginator stylesheets",
"main": "./dist/Pagination.js",
"scripts": {
"clean": "rimraf dist",
"clean-example": "rimraf src/example/dist",
"build": "npm run clean && cross-env NODE_ENV=build node build.js",
"build-example": "npm run clean-example && npm run build:webpack",
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"start": "node devServer.js",
"lint": "eslint src",
"test": "karma start --single-run --no-auto-watch",
"test:watch": "karma start"
},
"repository": {
"type": "git",
"url": "https://github.com/vayser/react-js-pagination"
},
"keywords": [
"react",
"reactjs",
"pagination",
"paginator",
"bootstrap",
"reload",
"webpack",
"babel",
"react-transform"
],
"author": "Sergey Vayser <wice24@gmail.com> (http://github.com/vayser)",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/vayser/react-js-pagination/issues"
},
"homepage": "https://github.com/vayser/react-js-pagination",
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.4.7",
"babel-eslint": "^3.1.9",
"babel-loader": "^5.1.2",
"babel-plugin-react-transform": "^1.1.1",
"bootstrap": "^3.3.5",
"chai": "^3.5.0",
"cross-env": "^1.0.7",
"css-loader": "^0.19.0",
"enzyme": "^2.0.0",
"eslint": "^1.3.1",
"eslint-plugin-react": "^2.7.1",
"expect": "^1.14.0",
"express": "^4.13.3",
"file-loader": "^0.8.4",
"jsdom": "^8.0.4",
"karma": "^0.13.21",
"karma-chai": "^0.1.0",
"karma-cli": "^0.1.2",
"karma-jsdom-launcher": "^3.0.0",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^1.2.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"less": "^2.5.3",
"less-loader": "^2.2.1",
"mkdirp": "^0.5.1",
"mocha": "^2.4.5",
"react-addons-test-utils": "^0.14.7 || ^15.0.1",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.0",
"redbox-react": "^1.0.1",
"rimraf": "^2.4.3",
"style-loader": "^0.12.4",
"url-loader": "^0.5.6",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.0.0"
},
"peerDependencies": {
"classnames": "^2.1.3",
"paginator": "0.0.2",
"react": "^0.14.0 || ^15.0.1"
}
}