forked from jsanahuja/gModal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 942 Bytes
/
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
{
"name": "@jsanahuja/gmodal",
"description": "A light modal (alert, confirm, prompt) implementation in raw/vanilla JS",
"homepage": "https://github.com/jsanahuja/gModal",
"version": "2.2.0",
"keywords": [
"gModal",
"modal",
"vanilla",
"alert",
"prompt"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": {
"name": "Javier Sanahuja",
"email": "[email protected]"
},
"contributors": [
{
"name": "Cristian Sanahuja",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/jsanahuja/gModal.git"
},
"license": "MIT",
"scripts": {
"build": "grunt dist"
},
"devDependencies": {
"grunt": "^1.0.4",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-node-minify": "^1.5.0"
},
"main": "dist/gModal.min.js",
"module": "dist/gModal.min.js",
"style": "dist/gModal.min.css"
}