forked from AdeleD/react-paginate
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·57 lines (56 loc) · 1.15 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
{
"name": "react-paginate",
"version": "0.1.12",
"description": "A ReactJS component that create a pagination.",
"main": "./react_components/index.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",
"material-ui": "0.7.1"
},
"devDependencies": {
"browserify": "~6.0.3",
"gulp": "~3.8.8",
"jest-cli": "^0.2.2",
"react-tools": "~0.12.2",
"reactify": "1.0.0",
"vinyl-source-stream": "~1.0.0",
"watchify": "~2.1",
"react": "~0.12.2"
},
"peerDependencies": {
},
"browserify": {
"transform": [
"reactify"
]
},
"scripts": {
"test": "jest"
},
"jest": {
"scriptPreprocessor": "<rootDir>/preprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
],
"testPathDirs": [
"<rootDir>/__tests__"
]
}
}