-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.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
{
"name": "drag-resizer",
"version": "1.2.1",
"description": "Adds a drag handle for dom nodes, based on flexbox",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify index.es6 -t babelify -o index.js",
"example": "beefy example/browser.js --live -- -t babelify -t brfs",
"prepublish": "browserify index.es6 -t babelify -o index.js",
"test": "tape test/*.js"
},
"author": "vegetableman <vegetablebot@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/vegetableman/drag-resizer.git"
},
"homepage": "https://github.com/vegetableman/drag-resizer",
"devDependencies": {
"babelify": "^5.0.3",
"beefy": "^2.1.3",
"brfs": "^1.4.0",
"browserify": "^3.30.1",
"domready": "^1.0.7",
"hyperscript": "^1.4.4",
"insert-css": "^0.2.0",
"tape": "^3.5.0"
},
"dependencies": {
"clickdrag": "^2.0.1",
"extend": "^2.0.0",
"is-array": "^1.0.1",
"lodash.without": "^3.0.0",
"prefix": "^0.2.1",
"queryselectorall": "^0.1.0"
},
"keywords": [
"drag",
"flexbox",
"resize",
"drag-handle",
"drag-resizer"
]
}