-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.08 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": "react-tiny-dnd",
"version": "1.2.4",
"description": "Drag and Drop library for React.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint -p tsconfig.json",
"build": "tsc",
"watch": "tsc-watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hosembafer/react-tiny-dnd.git"
},
"keywords": [
"drag and drop",
"dnd",
"reorder",
"reorderable",
"sortable",
"react"
],
"author": "Rafael Hovhannisyan <hovhannisian.rafael@gmail.com>",
"files": [
"lib/**/*",
"/README.md"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hosembafer/react-tiny-dnd/issues"
},
"homepage": "https://github.com/hosembafer/react-tiny-dnd#readme",
"devDependencies": {
"tslint": "^6.1.3",
"typescript": "^4.6.4",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
}