-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "gatsby-transformer-sharp-watermark",
"version": "1.0.5",
"description": "Gatsby transformer plugin for add watermark to images using Sharp",
"main": "index.js",
"scripts": {
"test": "echo \"No test yet!\" && exit 0",
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel src --watch --out-dir . --ignore **/__tests__"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-transform",
"sharp",
"watermark"
],
"author": "Javier López Úbeda <[email protected]>",
"bugs": {
"url": "https://github.com/kloderart/gatsby-transform-sharp-watermark/issues"
},
"homepage": "https://github.com/kloderart/gatsby-transform-sharp-watermark",
"peerDependencies": {
"gatsby": "^2.19.18"
},
"repository": {
"type": "git",
"url": "https://github.com/kloderart/gatsby-transform-sharp-watermark"
},
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.8.4",
"fs-extra": "^8.1.0",
"sharp": "0.30.5"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"babel-preset-gatsby-package": "^0.2.16",
"cross-env": "^7.0.0"
},
"engines": {
"node": ">=8.0.0"
}
}