forked from bebraw/react-pagify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.98 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.98 KB
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
{
"name": "react-pagify",
"description": "Simple pagination for React",
"author": "Juho Vepsalainen <bebraw@gmail.com>",
"version": "0.5.1",
"scripts": {
"start": "node server.js",
"test": "jest && npm run lint",
"gh-pages": "webpack --config ./config/webpack.gh-pages.js",
"deploy-gh-pages": "node ./config/deploy-gh-pages.js",
"dist": "webpack --config ./config/webpack.dist.js && webpack --config ./config/webpack.dist.min.js",
"watch": "npm-watch",
"lint": "eslint . --ext .js --ext .jsx"
},
"dependencies": {
"intersect": "^1.0.1",
"uniq": "^1.0.1"
},
"devDependencies": {
"annomath": "^0.4.1",
"babel-eslint": "^2.0.2",
"css-loader": "^0.9.1",
"cumberbatch-name": "^1.0.9",
"eslint": "^0.18.0",
"eslint-plugin-react": "^2.1.0",
"file-loader": "^0.8.1",
"gh-pages": "^0.2.0",
"highlight.js": "^8.4.0",
"html-loader": "^0.2.3",
"html-webpack-plugin": "^1.1.0",
"jest-cli": "^0.4.0",
"json-loader": "^0.5.1",
"jsx-loader": "^0.12.2",
"marked": "^0.3.3",
"npm-watch": "^0.0.0",
"react-ghfork": "^0.3.0",
"react-hot-loader": "^1.2.4",
"react-tools": "^0.13.1",
"style-loader": "^0.9.0",
"webpack": "^1.7.3",
"webpack-dev-server": "^1.8.0",
"xtend": "^4.0.0"
},
"peerDependencies": {
"react": ">=0.11.0 <1.0.0"
},
"main": "dist/react-pagify.js",
"repository": {
"type": "git",
"url": "https://github.com/bebraw/react-pagify.git"
},
"homepage": "https://bebraw.github.io/react-pagify/",
"bugs": {
"url": "https://github.com/bebraw/react-pagify/issues"
},
"keywords": [
"react",
"reactjs",
"pagination"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/bebraw/react-pagify/blob/master/LICENSE"
}
],
"jest": {
"scriptPreprocessor": "./config/preprocessor.js",
"unmockedModulePathPatterns": [
"./node_modules/react"
]
},
"watch": {
"test": "{lib,__tests__}/*.js"
}
}