forked from TylerBarnes/gatsby-wordpress-inline-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (34 loc) · 993 Bytes
/
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
{
"name": "gatsby-wordpress-experimental-inline-images",
"description": "A Gatsby plugin to turn remote inline images to local static images",
"version": "0.0.2",
"author": "Tyler Barnes <[email protected]>",
"contributors": [
"Pawel Szafer <[email protected]>"
],
"keywords": [
"gatsby plugin"
],
"license": "MIT",
"main": "n/a",
"babel": {
"presets": ["stage-0"]
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"cheerio": "^1.0.0-rc.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-preset-gatsby-package": "^0.1.4",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.1.4"
},
"scripts": {
"copy-files": "cp package.json ./dist/package.json && cp index.js ./dist/index.js",
"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__"
}
}