forked from AdeleD/react-paginate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.72 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
{
"name": "react-paginate",
"version": "4.4.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",
"prop-types": "^15.5.7",
"react": "^15.0.0",
"react-addons-create-fragment": "^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-jest": "^17.0.2",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"express": "^4.14.0",
"jest-cli": "^17.0.3",
"jquery": "^3.1.1",
"react-dom": "^15.0.0",
"react-hot-loader": "^1.3.1",
"serve-static": "^1.11.1",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.4",
"webpack-dev-server": "^1.16.2"
},
"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": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"testPathDirs": ["__tests__"],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/fbjs"
],
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/"
]
}
}