forked from AdeleD/react-paginate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.92 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
{
"name": "react-paginate",
"version": "2.2.3",
"description": "A ReactJS component that creates a pagination.",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/AdeleD/react-paginate"
},
"keywords": [
"react-component",
"paginate",
"paginator",
"pagination"
],
"author": {
"name": "Adèle Delamarche"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AdeleD/react-paginate/issues"
},
"dependencies": {
"classnames": "^2.2.5"
},
"peerDependencies": {
"react-addons-create-fragment": "^15.0.0",
"react-dom": "^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-jest": "^6.0.1",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"express": "^4.14.0",
"jest-cli": "^12.1.1",
"jquery": "^2.2.4",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"react-hot-loader": "^1.3.0",
"serve-static": "^1.11.1",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.15.0"
},
"scripts": {
"test": "BABEL_JEST_STAGE=0 jest",
"prepublish": "babel ./react_components --out-dir ./dist --source-maps --presets es2015,stage-0,react",
"start": "webpack-dev-server --hot --inline",
"demo": "webpack"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"js"
],
"moduleFileExtensions": [
"js",
"json"
],
"testDirectoryName": "__tests__",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs"
],
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/"
]
}
}