-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
{
"name": "gatsby-plugin-manifest",
"description": "Gatsby plugin which adds a manifest.json to make sites progressive web apps",
"version": "2.2.16",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@babel/runtime": "^7.6.0",
"gatsby-core-utils": "^1.0.8",
"semver": "^5.7.1",
"sharp": "^0.23.0"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"babel-preset-gatsby-package": "^0.2.4",
"cross-env": "^5.2.1"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-manifest#readme",
"keywords": [
"gatsby",
"gatsby-plugin",
"favicon",
"icons",
"manifest.json",
"progressive-web-app",
"pwa"
],
"license": "MIT",
"main": "index.js",
"peerDependencies": {
"gatsby": "^2.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby.git",
"directory": "packages/gatsby-plugin-manifest"
},
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__"
},
"engines": {
"node": ">=8.0.0"
}
}