-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·58 lines (58 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.24 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "modally",
"version": "1.1.8",
"description": "Simple ES6 nested modals",
"main": "modally.mjs",
"style": "modally.scss",
"exports": {
".": {
"import": "./modally.mjs",
"style": "./dist/modally.css",
"sass": "./modally.scss",
"default": "./modally.mjs"
},
"./dist/modally.js": "./dist/modally.js",
"./dist/modally.css": "./dist/modally.css",
"./dist/modally.min.css": "./dist/modally.min.css",
"./modally.scss": "./modally.scss",
"./package.json": "./package.json"
},
"files": [
"modally.mjs",
"modally.scss",
"dist"
],
"scripts": {
"build": "poops -b",
"lint": "eslint .",
"test": "node --test test/*.test.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/stamat/modally.git"
},
"keywords": [
"modal",
"popup",
"modal-window",
"modal-dialogs",
"nested",
"es6",
"esm",
"dialog"
],
"author": "Nikola Stamatovic <@stamat>",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/stamat/modally/issues"
},
"devDependencies": {
"eslint": "^10.7.0",
"jsdom": "^29.1.1",
"poops": "^1.0.13"
},
"dependencies": {
"book-of-spells": "^1.0.20"
}
}