mirror of https://gitee.com/antv-l7/antv-l7
56 lines
1.6 KiB
JSON
56 lines
1.6 KiB
JSON
{
|
|
"name": "gatsby-plugin-offline",
|
|
"description": "Gatsby plugin which sets up a site to be able to run offline",
|
|
"version": "3.0.22",
|
|
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
|
|
"bugs": {
|
|
"url": "https://github.com/gatsbyjs/gatsby/issues"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.7.2",
|
|
"cheerio": "^1.0.0-rc.3",
|
|
"gatsby-core-utils": "^1.0.20",
|
|
"glob": "^7.1.6",
|
|
"idb-keyval": "^3.2.0",
|
|
"lodash": "^4.17.15",
|
|
"workbox-build": "^4.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.7.0",
|
|
"@babel/core": "^7.7.2",
|
|
"babel-preset-gatsby-package": "^0.2.11",
|
|
"cpx": "^1.5.0",
|
|
"cross-env": "^5.2.1",
|
|
"rewire": "^4.0.1"
|
|
},
|
|
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-offline#readme",
|
|
"keywords": [
|
|
"gatsby",
|
|
"gatsby-plugin",
|
|
"offline",
|
|
"precache",
|
|
"service-worker"
|
|
],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"peerDependencies": {
|
|
"gatsby": "^2.4.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/gatsbyjs/gatsby.git",
|
|
"directory": "packages/gatsby-plugin-offline"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run build:src && npm run build:sw-append",
|
|
"build:src": "babel src --out-dir . --ignore **/__tests__,src/sw-append.js",
|
|
"build:sw-append": "cpx -v src/sw-append.js .",
|
|
"prepare": "cross-env NODE_ENV=production npm run build",
|
|
"watch": "npm run build:sw-append -- --watch & npm run build:src -- --watch"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.0.0"
|
|
},
|
|
"gitHead": "4e54d39f6b27118b30868ebe995dddc9efae3697"
|
|
}
|