forked from jwlarocque/svelte-dragdroplist
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "svelte-dragdroplist",
"main": "DragDropList.svelte",
"svelte": "DragDropList.svelte",
"version": "1.1.1",
"peerDependencies": {
"svelte": "^3.0.0"
},
"license": "ISC",
"respository": {
"type": "git",
"url": "git+https://github.com/jwlarocque/svelte-dragdroplist.git"
},
"bugs": {
"url": "https://github.com/jwlarocque/svelte-dragdroplist/issues"
},
"description": "Sortable lists with Svelte 3. Animated, touch-friendly, and accessible.",
"author": "John LaRocque <[email protected]>",
"homepage": "https://github.com/jwlarocque/svelte-dragdroplist",
"keywords": [
"svelte",
"drag",
"drop",
"list",
"sortable",
"component",
"dnd"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^7.1.1",
"npm-run-all": "^4.1.5",
"rollup": "^1.32.1",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-svelte": "^6.1.1",
"sirv-cli": "^1.0.10",
"svelte": "^3.32.1"
},
"scripts": {
"autobuild": "rollup -c ./demo/rollup.config.js -w",
"demo": "run-p start autobuild",
"start": "sirv ./demo --single --dev --host --port=8061"
}
}