-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
87 lines (87 loc) · 2.56 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
{
"name": "gatsby-plugin-breadcrumb",
"version": "0.0.0-semantically-released",
"description": "Gatsby plugin to add breadcrumbs to your site",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/sbardian/gatsby-plugin-breadcrumb"
},
"homepage": "https://github.com/sbardian/gatsby-plugin-breadcrumb",
"bugs": "https://github.com/sbardian/gatsby-plugin-breadcrumb/issues",
"author": "Brian Andrews <sbardian@gmail.com>",
"license": "MIT",
"contributors": [
"Brian Andrews <sbardian@gmail.com>"
],
"keywords": [
"gatsby",
"gatsby-plugin",
"breadcrumbs",
"gatsby-plugin-breadcrumb"
],
"scripts": {
"cm": "git-cz",
"build": "babel src --out-dir . --ignore **/__tests__",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"lint": "eslint ./src",
"test": "jest",
"test:coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"prepare": "cross-env NODE_ENV=production npm run build",
"prepublishOnly": "yarn build"
},
"release": {
"branch": "master"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"identity-obj-proxy": "3.0.0",
"prop-types": "15.8.1",
"wildcard-match": "5.1.4"
},
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/helper-define-map": "7.18.6",
"@babel/runtime": "7.26.0",
"@commitlint/cli": "14.1.0",
"@commitlint/config-conventional": "14.1.0",
"@testing-library/dom": "8.20.1",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "12.1.5",
"babel-jest": "27.5.1",
"babel-plugin-dynamic-import-node": "2.3.3",
"babel-preset-gatsby": "2.25.0",
"babel-preset-gatsby-package": "2.25.0",
"commitizen": "4.3.1",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.1",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.10.0",
"eslint-config-react": "1.1.7",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "4.6.2",
"gatsby": "4.6.2",
"husky": "7.0.4",
"jest": "27.5.1",
"jest-dom": "4.0.0",
"lint-staged": "11.2.6",
"prettier": "2.8.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"semantic-release": "18.0.1"
},
"peerDependencies": {
"gatsby": "3.x - 5.x"
}
}