forked from AdeleD/react-paginate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.3 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
{
"name": "react-paginate",
"version": "0.1.34",
"description": "A ReactJS component that creates a pagination.",
"main": "./dist/react-paginate.js",
"repository": {
"type": "git",
"url": "https://github.com/AdeleD/react-paginate"
},
"keywords": [
"react-component",
"paginate",
"paginator",
"pagination"
],
"author": {
"name": "Adèle Delamarche"
},
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/AdeleD/react-paginate/issues"
},
"dependencies": {
"underscore": "^1.7.0",
"classnames": "^1.2.0"
},
"devDependencies": {
"babelify": "^6.0.2",
"browserify": "~6.0.3",
"express": "^4.12.1",
"gulp": "~3.8.8",
"gulp-babel": "^5.1.0",
"gulp-nodemon": "^1.0.5",
"gulp-uglify": "^1.1.0",
"jest-cli": "^0.2.2",
"jquery": "^2.1.3",
"react": "~0.13.1",
"react-router": "^0.13.3",
"react-tools": "~0.12.2",
"serve-static": "^1.9.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "~1.0.0",
"watchify": "~2.1"
},
"peerDependencies": {},
"scripts": {
"test": "jest"
},
"jest": {
"scriptPreprocessor": "<rootDir>/preprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
],
"testPathDirs": [
"<rootDir>/__tests__"
]
}
}