-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.35 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@designory/yamodal",
"version": "1.0.1",
"description": "Yet Another Modal",
"main": "dist/umd/yamodal.js",
"module": "dist/esm/yamodal.esm.js",
"scripts": {
"build": "rollup -c",
"prebuild": "rm -rf dist",
"prepublishOnly": "npm run build",
"start": "rollup -c --watch --environment SERVE:true",
"test": "nyc mocha"
},
"author": "Matt Wade <[email protected]>",
"license": "MIT",
"homepage": "https://designory.github.io/yamodal/",
"repository": {
"type": "git",
"url": "git+https://github.com/Designory/yamodal.git"
},
"bugs": {
"url": "https://github.com/Designory/yamodal/issues"
},
"dependencies": {
"delegate": "^3.2.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/register": "^7.15.3",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"global-jsdom": "^6.1.0",
"jsdom": "^16.3.0",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"rollup": "^2.23.0",
"rollup-plugin-filesize": "^9.0.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^9.0.2"
},
"keywords": [
"modal",
"overlay",
"vanillajs"
],
"files": [
"dist/umd/",
"dist/esm/"
]
}