forked from flekschas/svelte-simple-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.6 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
55
56
57
58
{
"name": "svelte-simple-modal",
"version": "1.4.1",
"description": "A small and simple modal for Svelte",
"type": "module",
"svelte": "src/index.js",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "types/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"build": "rm -rf lib && rm -rf types && rollup -c && sed -i '' '/from \"\"/d' types/index.d.ts",
"precommit": "NODE_ENV=production lint-staged; npm run lint",
"prepare": "npm run lint && npm run build",
"prerelease": "npm run lint; rm -f dist.zip; npm run build; zip dist.zip lib/* src/* types/*",
"lint": "eslint src/* rollup.config.js"
},
"files": [
"lib",
"src",
"types"
],
"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.35.0"
},
"devDependencies": {
"@tsconfig/svelte": "^2.0.1",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-svelte3": "^3.2.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.3.2",
"prettier-plugin-svelte": "^2.4.0",
"pretty-quick": "^3.1.1",
"rollup": "^2.56.3",
"rollup-plugin-svelte": "^7.1.0",
"sveld": "^0.15.1",
"svelte": "^3.35.0",
"typescript": "^4.4.4"
}
}