forked from graysonhicks/gatsby-plugin-remote-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.66 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
{
"name": "gatsby-plugin-remote-images",
"version": "3.1.0",
"description": "Gatsby plugin to use gatsby-image on remote images from absolute path string fields on other nodes.",
"author": "Grayson Hicks <[email protected]>",
"main": "gatsby-node.js",
"files": [
"gatsby-node.js",
"README.md"
],
"repository": "graysonhicks/gatsby-plugin-remote-images",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-image",
"gatsby-source-filesystem",
"plugin",
"images",
"remote",
"download",
"api"
],
"license": "MIT",
"peerDependencies": {
"gatsby": "^2.2.0 || ^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"babel-jest": "^24.8.0",
"babel-preset-gatsby-package": "^1.4.0",
"cross-env": "^5.1.4",
"husky": "^3.1.0",
"jest": "^24.8.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"gatsby-source-filesystem": "^3.4.0",
"lodash": "^4.17.15"
},
"scripts": {
"build": "rimraf ./gatsby-node.js && babel src --out-dir . --ignore **/__tests__",
"format": "prettier --write **/*.{js,jsx,ts,tsx,json,css,scss,md}",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"test": "jest",
"prepublishOnly": "npm run build"
},
"prettier": {
"proseWrap": "always",
"singleQuote": true,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
}
}