forked from GatsbyCentral/gatsby-awesome-pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.36 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
{
"name": "gatsby-awesome-pagination",
"version": "0.3.5",
"description": "An opinionated, more awesome approach to pagination in Gatsby",
"files": [
"lib"
],
"main": "lib/index.js",
"browser": "lib/components.js",
"scripts": {
"prepack": "npm run build",
"build": "npm run prepack:babel && npm run prepack:flow",
"prepack:babel": "babel src/ -d lib",
"prepack:flow": "flow-copy-source src lib",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GatsbyCentral/gatsby-plugin-awesome-pagination.git"
},
"bugs": {
"url": "https://github.com/GatsbyCentral/gatsby-plugin-awesome-pagination/issues"
},
"homepage": "https://github.com/GatsbyCentral/gatsby-plugin-awesome-pagination#readme",
"keywords": [
"gatsby",
"gatsby-plugin",
"pagination"
],
"author": "Callum Macdonald",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^23.6.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"flow-bin": "^0.72.0",
"flow-copy-source": "^1.3.0",
"jest": "^23.6.0"
},
"dependencies": {
"lodash": "^4.17.15"
},
"peerDependencies": {
"gatsby": "^2.0.0",
"react": "^16.0.0"
}
}