-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 856 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
{
"name": "@koga73/overlay",
"version": "3.0.3",
"description": "A simple responsive modal system for the web. Works down to IE8. Accessible by screen readers. Easy to customize. No Dependencies. Vanilla JS.",
"main": "js/overlay.js",
"module": "js/module.js",
"style": "css/overlay.css",
"scripts": {
"build": "npm run sass",
"sass": "sass ./css/overlay.scss ./css/overlay.css",
"watch": "nodemon -e sass,scss -x \"npm run sass\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/koga73/overlay.git"
},
"keywords": [
"modal",
"overlay",
"popup",
"dialog",
"lightbox"
],
"author": "AJ Savino",
"license": "MIT",
"bugs": {
"url": "https://github.com/koga73/overlay/issues"
},
"homepage": "https://github.com/koga73/overlay#readme",
"devDependencies": {
"nodemon": "^2.0.4",
"sass": "^1.63.6"
}
}