-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (36 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
{
"name": "iframe-dnd-shim",
"version": "1.0.2",
"description": "Drag and drop fallback for support of the iframes on mobile devices, where HTML drag and drop API is emulated",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/lukaskral/iframe-dnd-shim.git",
"files": [
"dist/index.js",
"dist/index.d.ts",
"readme.md"
],
"scripts": {
"build": "npm run build:bundle",
"build:bundle": "./node_modules/.bin/webpack",
"watch": "cross-env WEBPACK_WATCH=true npm run build:bundle",
"prepublish": "npm run build"
},
"peerDependencies": {
},
"devDependencies": {
"cross-env": "^5.0.0",
"dts-bundle": "^0.7.2",
"jest": "^18.1.0",
"source-map-loader": "^0.2.0",
"ts-jest": "^18.0.3",
"ts-loader": "^2.0.2",
"typescript": "^2.2.1",
"webpack": "^2.6.0"
},
"author": {
"name": "Lukas Kral",
"email": "[email protected]"
},
"license": "MIT"
}