-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.93 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "gatsby-plugin-advanced-pages",
"version": "3.0.1",
"description": "Gatsby plugin that allows easy creation of pages with dynamic features like pagination and custom routing",
"main": "cjs/index.js",
"module": "es/index.js",
"types": "types/index.d.ts",
"sideEffects": false,
"files": [
"cjs/",
"es/",
"types/",
"gatsby-node.js"
],
"scripts": {
"prepare": "cross-env NODE_ENV=production pnpm run build",
"build": "rimraf cjs es && pnpm run build:cjs && pnpm run build:es",
"build:cjs": "babel src --out-dir cjs --ignore '**/__tests__,**/*.test.js,**/*.fragment.js'",
"build:es": "cp -r src es && rimraf 'es/**/+(__tests__|*.test.js)' 'es/gatsby' 'es/.babelrc'",
"watch": "babel -w src --out-dir cjs --ignore '**/__tests__,**/*.test.js,**/*.fragment.js'",
"test": "jest",
"test:coverage": "jest --coverage",
"release": "semantic-release --no-ci",
"release:inspect": "semantic-release --dry-run",
"lint": "standard src",
"lint:fix": "standard src --fix"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-component",
"routing",
"pagination"
],
"author": "Mohamed Elkholy <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mohatt/gatsby-plugin-advanced-pages.git"
},
"homepage": "https://github.com/mohatt/gatsby-plugin-advanced-pages",
"bugs": "https://github.com/mohatt/gatsby-plugin-advanced-pages/issues",
"dependencies": {
"@babel/runtime": "^7.12.5",
"clsx": "^1.1.1",
"debug": "^3.2.6",
"js-yaml": "^4.0.0",
"lodash": "^4.17.20",
"path-to-regexp": "^6.2.0",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "7.14.8",
"@babel/core": "7.14.8",
"@babel/eslint-parser": "7.14.7",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"babel-preset-gatsby-package": "1.10.0",
"cross-env": "7.0.3",
"gatsby-plugin-utils": "1.10.0",
"jest": "27.0.6",
"mkdirp": "1.0.4",
"metro-memory-fs": "0.66.2",
"react": "17.0.2",
"react-test-renderer": "17.0.2",
"rimraf": "3.0.2",
"semantic-release": "17.4.4",
"standard": "16.0.3"
},
"peerDependencies": {
"gatsby": ">=3.0.4",
"react": ">=16.8.6"
},
"engines": {
"node": ">=10.13.0"
},
"jest": {
"roots": [
"<rootDir>/test/",
"<rootDir>/src/"
],
"testPathIgnorePatterns": [
"/__tests__/__fixtures__/.*$"
],
"collectCoverageFrom": [
"src/**/*.js"
]
},
"standard": {
"parser": "@babel/eslint-parser",
"env": [
"jest"
]
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"renovate": {
"extends": [
"config:js-lib"
]
}
}