-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
50 lines (50 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
{
"name": "svelte-zoom",
"version": "1.0.16",
"description": "Nearly native image scaling in web (mobile/desktop), rich in functionality. This will make your mobile users happy",
"svelte": "src/index.svelte",
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"pretty": "prettier --config .prettierrc --write --svelte-sort-order styles-markup-scripts \"rollup.config.js\" \"src/*.svelte\" \"src/*.js\" \"package.json\" \"*.md\" ",
"go": "npm-run-all pretty build",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vaheqelyan/svelte-zoom.git"
},
"author": "Vahe Araqelyan",
"license": "MIT",
"bugs": {
"url": "https://github.com/vaheqelyan/svelte-zoom/issues"
},
"keywords": [
"svelte",
"hook",
"zoom",
"pinch",
"pan",
"touch",
"mobile",
"desktop",
"browser",
"mouse"
],
"homepage": "https://github.com/vaheqelyan/svelte-zoom#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"prettier-plugin-svelte": "^1.2.0",
"rollup": "^2.26.9",
"rollup-plugin-svelte": "^6.0.0",
"svelte": "^3.24.1"
},
"files": [
"src",
"dist"
]
}