UNPKG

2.82 kBJSONView Raw
1{
2 "name": "offline-plugin",
3 "version": "4.9.1",
4 "description": "offline-plugin for webpack",
5 "main": "lib/index.js",
6 "files": [
7 "lib/",
8 "tpls/",
9 "runtime.js",
10 "runtime.d.ts"
11 ],
12 "scripts": {
13 "test": "node tests/legacy/run && eslint -c configs/eslint.tests.json 'tests/legacy/**.js'",
14 "test:browser": "node tests/run-browser-tests.js",
15 "test:ci_fixtures": "npm run test",
16 "test:ci_browser": "npm install puppeteer@^0.12.0 && npm run test:browser",
17 "test:ci_all": "npm run test:ci_fixtures && npm run test:ci_browser",
18 "build": "./node_modules/.bin/babel src/ -d lib/",
19 "watch": "npm run build -- --watch",
20 "install:build-deps": "node build/install.js",
21 "tag": "git push && git push --tags",
22 "publish:latest": "npm publish",
23 "publish:next": "npm publish --tag=next",
24 "release:latest:patch": "npm version patch && npm run tag && npm run publish:latest",
25 "release:latest:minor": "npm version minor && npm run tag && npm run publish:latest",
26 "release:latest:major": "npm version major && npm run tag && npm run publish:latest",
27 "release:next:patch": "npm --no-git-tag-version version prepatch && npm run publish:next",
28 "release:next:minor": "npm --no-git-tag-version version preminor && npm run publish:next",
29 "release:next:major": "npm --no-git-tag-version version premajor && npm run publish:next",
30 "release:next:update": "npm --no-git-tag-version version prerelease && npm run publish:next"
31 },
32 "collective": {
33 "type": "opencollective",
34 "url": "https://opencollective.com/offline-plugin",
35 "logo": "https://opencollective.com/offline-plugin/logo.txt?variant=binary&reverse=true"
36 },
37 "repository": {
38 "type": "git",
39 "url": "https://github.com/NekR/offline-plugin.git"
40 },
41 "author": "Arthur Stolyar <nekr.fabula@gmail.com>",
42 "license": "MIT",
43 "dependencies": {
44 "deep-extend": "^0.4.0",
45 "ejs": "^2.3.4",
46 "loader-utils": "0.2.x",
47 "minimatch": "^3.0.3",
48 "slash": "^1.0.0"
49 },
50 "bugs": {
51 "url": "https://github.com/NekR/offline-plugin/issues"
52 },
53 "homepage": "https://github.com/NekR/offline-plugin",
54 "keywords": [
55 "webpack",
56 "plugin",
57 "offline",
58 "cache",
59 "caching",
60 "storage",
61 "service-worker",
62 "serviceworker",
63 "appcache",
64 "application cache",
65 "pwa",
66 "progressive web apps",
67 "app-shell",
68 "appshell"
69 ],
70 "devDependencies": {
71 "chalk": "^1.1.3",
72 "cli-highlight": "^1.1.4",
73 "copy-webpack-plugin": "^4.2.0",
74 "del": "^2.2.2",
75 "diff": "^3.0.1",
76 "dir-compare": "^1.1.0",
77 "eslint": "^3.14.1",
78 "express": "^4.16.2",
79 "glob": "^7.1.2",
80 "mocha": "^4.0.1",
81 "on-build-webpack": "^0.1.0",
82 "webpack": "1.14.0"
83 },
84 "buildDependencies": {
85 "babel": "^5.8.23"
86 }
87}