forked from graysonhicks/gatsby-plugin-remote-images
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.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
{
"name": "gatsby-plugin-remote-images",
"version": "2.2.0",
"description": "Gatsby plugin to use gatsby-image on remote images from absolute path string fields on other nodes.",
"author": "Grayson Hicks <graysonhicks@gmail.com>",
"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"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"babel-jest": "^24.8.0",
"babel-preset-gatsby-package": "^0.1.3",
"cross-env": "^5.1.4",
"husky": "^3.1.0",
"jest": "^24.8.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1"
},
"dependencies": {
"gatsby-source-filesystem": "^2.3.14",
"lodash": "^4.17.15"
},
"scripts": {
"build": "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"
},
"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"
]
}
}