-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
79 lines (79 loc) · 1.92 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
{
"name": "gatsby-transformer-inline-svg",
"version": "1.1.0",
"description": "Inline SVGs from any GraphQL source",
"main": "index.js",
"engines": {
"node": ">8.0.0"
},
"scripts": {
"format": "prettier --write {src/**/*.js,*.{js,json}}",
"lint": "eslint index.js",
"test": "jest gatsby-node.test.js"
},
"files": [
"index.js",
"gatsby-node.js"
],
"keywords": [
"gatsby",
"gatsby-plugin",
"svg",
"inline",
"contentful"
],
"author": "Benedikt Rötsch <[email protected]>",
"bugs": {
"url": "https://github.com/axe312ger/gatsby-transformer-inline-svg/issues"
},
"homepage": "https://github.com/axe312ger/gatsby-transformer-inline-svg/",
"repository": {
"type": "git",
"url": "https://github.com/axe312ger/gatsby-transformer-inline-svg.git"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"prettier --write --config .prettierrc",
"eslint --fix"
],
"*.json": [
"prettier --write --config .prettierrc"
]
},
"dependencies": {
"debug": "^4.1.1",
"fs-extra": "^10.0.0",
"gatsby-core-utils": "^3.0.0-zz-next.1",
"mini-svg-data-uri": "^1.1.3",
"p-queue": "^6.2.1",
"svgo": "^1.3.2"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"gatsby": "2.32.13",
"husky": "^4.2.1",
"jest": "^27.4.7",
"lint-staged": "^10.0.7",
"nock": "^13.2.2",
"prettier": "^1.19.1"
},
"peerDependencies": {
"gatsby": "^4.0.0-next.0",
"gatsby-source-contentful": ">=5.0.0",
"gatsby-source-filesystem": ">=4.0.0"
}
}