forked from flekschas/svelte-simple-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "svelte-simple-modal",
"version": "0.10.1",
"description": "A small and simple modal for Svelte",
"main": "index.js",
"module": "module.js",
"svelte": "src/Modal.svelte",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"build": "rollup -c",
"prepare": "npm run lint && npm run build",
"prerelease": "rm -f dist.zip; npm run build; zip dist.zip src/Modal.svelte index.js module.js",
"lint": "eslint src/* rollup.config.js"
},
"files": [
"index.js",
"module.js",
"src/Modal.svelte"
],
"repository": {
"type": "git",
"url": "git+https://github.com/flekschas/svelte-simple-modal.git"
},
"keywords": [
"svelte",
"modal",
"popup",
"dialog"
],
"author": "Fritz Lekschas",
"license": "MIT",
"bugs": {
"url": "https://github.com/flekschas/svelte-simple-modal/issues"
},
"homepage": "https://github.com/flekschas/svelte-simple-modal#readme",
"peerDependencies": {
"svelte": "^3.18.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^7.1.1",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-svelte3": "^2.7.3",
"rollup": "^1.29.0",
"rollup-plugin-svelte": "^5.1.1",
"rollup-plugin-filesize": "^6.2.1",
"svelte": "^3.18.2"
}
}