-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
{
"name": "ampersand-file-drop-view",
"description": "Drag-and-drop file view based on ampersand-view, and for use in ampersand-form-view",
"version": "1.2.4",
"author": "Daniel Hritzkiv <daniel.hritzkiv@gmail.com>",
"bugs": {
"url": "https://github.com/dhritzkiv/ampersand-file-drop-view/issues"
},
"files": [
"ampersand-file-drop-view.js"
],
"homepage": "https://github.com/dhritzkiv/ampersand-file-drop-view",
"keywords": [
"ampersand",
"file",
"view",
"drag",
"drop",
"input",
"dnd"
],
"license": "MIT",
"main": "ampersand-file-drop-view.js",
"repository": {
"type": "git",
"url": "git://github.com/dhritzkiv/ampersand-file-drop-view"
},
"dependencies": {
"ampersand-collection": "^2.0.0",
"ampersand-state": "^5.0.2",
"ampersand-view": "^10.0.1",
"lodash": "^4.16.5"
},
"devDependencies": {
"ampersand-form-view": "^7.0.0",
"ampersand-view-conventions": "^1.1.8",
"beefy": "^2.1.6",
"browserify": "^16.1.1",
"jscs": "^3.0.3",
"jshint": "^2.9.2",
"precommit-hook": "^3.0.0",
"run-browser": "^2.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.5.1",
"tape-run": "^4.0.0"
},
"scripts": {
"start": "run-browser test/index.js",
"test": "browserify test/index.js | tape-run --browser electron | tap-spec",
"demo": "beefy demo.js",
"lint": "jshint .",
"checkstyle": "jscs ."
},
"pre-commit": [
"lint",
"checkstyle",
"test"
]
}