forked from kutlugsahin/smooth-dnd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 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
46
47
48
49
{
"name": "@ovos-media/smooth-dnd",
"version": "0.12.2",
"description": "Drag and Drop library",
"main": "./dist/index.js",
"scripts": {
"bundle": "rollup -c --environment INCLUDE_DEPS,BUILD:production",
"tsc": "tsc --emitDeclarationOnly --outDir dist",
"build": "npm run tsc && npm run bundle"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"sortable",
"drag and drop",
"drag&drop",
"drag",
"drop",
"draggable",
"dnd"
],
"authors": [
{
"name": "Kutlu Sahin",
"email": "kutlugsahin@gmail.com"
},
{
"name": "Patrick Hübl-Neschkudla",
"email": "pn@ovos.at"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ovos/smooth-dnd.git"
},
"devDependencies": {
"@babel/core": "7.3.4",
"@babel/preset-env": "7.3.4",
"@babel/preset-typescript": "7.3.3",
"rollup": "1.4.0",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-uglify": "6.0.2",
"typescript": "3.3.3333"
}
}