-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "heyoffline",
"version": "2.0.2",
"description": "Notify your users when their network goes down. Make sure they don't lose anything.",
"keywords": [
"javascript",
"browser",
"front-end",
"offline",
"online",
"vanilla"
],
"homepage": "https://github.com/oskarkrawczyk/heyoffline",
"bugs": {
"url": "https://github.com/oskarkrawczyk/heyoffline/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/oskarkrawczyk/heyoffline.git"
},
"author": "Oskar Krawczyk <[email protected]> (krawczyk.io)",
"license": "MIT",
"private": false,
"main": "dist/heyoffline.umd.js",
"module": "dist/heyoffline.esm.js",
"browser": "dist/heyoffline.umd.js",
"scripts": {
"start": "gulp watch",
"build": "rollup --config rollup.config.js"
},
"devDependencies": {
"browser-sync": "latest",
"bs-snippet-injector": "latest",
"gulp": "latest",
"fs": "latest",
"rollup": "latest"
}
}