-
Notifications
You must be signed in to change notification settings - Fork 105
/
package.json
79 lines (79 loc) · 2.18 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "svelte-dnd-action",
"description": "*An awesome drag and drop library for Svelte 3 and 4 (not using the browser's built-in dnd, thanks god): Rich animations, nested containers, touch support and more *",
"version": "0.9.52",
"repository": {
"type": "git",
"url": "git+https://github.com/isaacHagoel/svelte-dnd-action.git"
},
"author": "Isaac Hagoel",
"license": "MIT",
"bugs": {
"url": "https://github.com/isaacHagoel/svelte-dnd-action/issues"
},
"homepage": "https://github.com/isaacHagoel/svelte-dnd-action#readme",
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"svelte": "src/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"svelte": "./src/index.js"
}
},
"scripts": {
"test": "cypress run",
"lint": "eslint .",
"format": "prettier --write .",
"build": "yarn lint && rollup -c",
"prepublishOnly": "yarn build"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@rollup/plugin-node-resolve": "^6.0.0",
"babel-jest": "^26.0.1",
"cypress": "^4.5.0",
"eslint": "^7.11.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"rollup": "^2.79.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-copy": "^3.3.0"
},
"peerDependencies": {
"svelte": ">=3.23.0 || ^5.0.0-next.0"
},
"keywords": [
"svelte",
"drag and drop",
"sortable",
"dnd",
"draggable",
"accessible",
"touch"
],
"files": [
"src",
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}