forked from TylerBarnes/gatsby-wordpress-inline-images
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.22 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.22 KB
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
{
"name": "@draftbox-co/gatsby-wordpress-inline-images",
"description": "A Gatsby plugin to turn remote inline images to local static images",
"version": "1.0.6",
"author": "Arun Priyadarshi <arunpriyadarshi52@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/draftbox-co/gatsby-wordpress-inline-images"
},
"bugs": {
"url": "https://github.com/draftbox-co/gatsby-wordpress-inline-images/issues"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"html",
"remote-images",
"images",
"images-inline",
"images-download",
"wordpress",
"wordpress-cms",
"draftbox"
],
"license": "MIT",
"main": "n/a",
"dependencies": {
"@babel/runtime": "^7.0.0",
"cheerio": "^1.0.0-rc.2",
"image-size": "^0.8.3"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"babel-preset-gatsby-package": "^0.1.4",
"cross-env": "^5.1.4"
},
"scripts": {
"copy-files": "cp package.json ./dist/package.json && cp index.js ./dist/index.js && cp README.md ./dist/README.md",
"build": "yarn copy-files && babel src --out-dir ./dist --verbose --ignore **/__tests__",
"watch": "yarn copy-files && babel -w ./src --out-dir ./dist --verbose --extensions '.js' --ignore **/__tests__"
}
}