-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·41 lines (41 loc) · 1020 Bytes
/
package.json
File metadata and controls
executable file
·41 lines (41 loc) · 1020 Bytes
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
{
"name": "rm-pushnotify",
"version": "1.0.0",
"description": "A library for handling push notifications with service workers.",
"main": "src/index.js",
"module": "src/index.js",
"types": "src/index.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c"
},
"keywords": [
"push",
"notifications",
"service worker"
],
"license": "MIT",
"files": [
"dist/**/*"
],
"author": {
"name": "Rajat Malik",
"email": "mr.rajatmalik@gmail.com",
"url": "https://www.linkedin.com/in/errajatmalik/"
},
"homepage": "https://github.com/malikrajat/rm-pushnotify#readme",
"repository": {
"type": "git",
"url": "https://github.com/malikrajat/rm-pushnotify.git"
},
"bugs": {
"url": "https://github.com/malikrajat/rm-pushnotify/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"rollup": "^2.79.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-terser": "^7.0.2"
}
}