-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
98 lines (98 loc) · 2.68 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-pagify",
"description": "Simple pagination for React",
"author": "Juho Vepsalainen <bebraw@gmail.com>",
"version": "2.4.0",
"scripts": {
"start": "webpack-dev-server",
"test": "jest",
"test:tdd": "jest --watch",
"lint": "eslint . --ext .js --ext .jsx",
"gh-pages": "webpack",
"gh-pages:deploy": "gh-pages -d gh-pages",
"dist": "webpack",
"dist:min": "webpack",
"dist:modules": "babel ./src --out-dir ./dist-modules",
"preversion": "npm run test && npm run dist && npm run dist:min && git commit --allow-empty -am \"Update dist\"",
"prepublish": "npm run dist:modules",
"postpublish": "npm run gh-pages && npm run gh-pages:deploy"
},
"main": "dist-modules",
"files": [
"dist-modules",
"style.css"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"cumberbatch-name": "^1.1.1",
"eslint": "^4.10.0",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"gh-pages": "^1.0.0",
"git-prepush-hook": "^1.0.2",
"highlight.js": "^9.12.0",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"jest-cli": "^21.2.1",
"lodash": "^4.17.4",
"prettier": "^1.8.1",
"purecss": "^1.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-ghfork": "^0.5.1",
"segmentize": "^0.4.1",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4",
"webpack-merge": "^4.1.1"
},
"peerDependencies": {
"react": ">= 0.15.3 < 17.0.0",
"lodash": ">= 4.3.0 < 5.0.0"
},
"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"
],
"license": "MIT",
"jest": {
"transform": {
"^.+\\.jsx?$": "./node_modules/babel-jest"
}
},
"watch": {
"test": "{src,__tests__}/*.jsx"
},
"pre-push": [
"lint",
"test"
],
"dependencies": {
"prop-types": "^15.6.0"
}
}