forked from simogeo/Filemanager
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.56 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "fm2",
"version": "2.4.0",
"description": "FM2 is an open-source file manager released under MIT license.",
"main": "scripts/filemanager2.js",
"dependencies": {
"bootstrap": "^3.3.7",
"dropzone": "^4.3.0",
"filesize": "^3.3.0",
"gulp-eslint": "^3.0.1",
"gulp-sourcemaps": "^1.6.0",
"jquery": "^1.12.1",
"jquery-migrate": "^1.4.1",
"jquery-ui-dist": "^1.12.0",
"jquery.fancytree": "^2.19.0",
"jquery.splitter": "^0.23.0",
"jqueryfiletree": "git+https://github.com/jqueryfiletree/jqueryfiletree.git",
"knockout": "^3.4.0",
"knockout-punches": "^0.5.1",
"knockout.contextmenu": "^0.4.4",
"lodash": "^4.15.0",
"path": "^0.12.7",
"require-css": "^0.1.8",
"requirejs": "^2.2.0",
"sweetalert": "^1.1.3",
"text": "requirejs/text",
"toastr": "^2.1.2"
},
"devDependencies": {
"browserify-css": "^0.9.1",
"browserify-shim": "^3.8.12",
"datauri": "^1.0.4",
"gulp": "^3.9.1",
"gulp-multi-extend": "0.0.2",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"pump": "^1.0.1",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"buildProd": "browserify -g browserify-css app/filemanager.js > dist/filemanager.js"
},
"browser": {
"app.viewmodel": "./app/app.viewmodel.js",
"bootstrap": "./node_modules/bootstrap/dist/js/bootstrap.js",
"dropzone": "./node_modules/dropzone/dist/dropzone.js",
"jquery": "./node_modules/jquery/dist/jquery.js",
"jquery.fancytree": "./node_modules/jquery.fancytree/dist/jquery.fancytree.js",
"jquery.splitter": "./node_modules/jquery.splitter/js/jquery.splitter.js",
"jquery-ui-dist": "./node_modules/jquery-ui-dist/jquery-ui.js",
"knockout": "./node_modules/knockout/build/output/knockout-latest.debug.js",
"knockout.contextmenu": "./node_modules/knockout.contextmenu/dist/js/knockout.contextmenu.js",
"knockout-punches": "./node_modules/knockout-punches/knockout.punches.js"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jquery": "$",
"jq-ui": {
"exports": "jq-ui",
"depends": [
"jquery:jQuery"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jlaustill/fm2.git"
},
"author": "jlaustill",
"license": "MIT",
"bugs": {
"url": "https://github.com/jlaustill/fm2/issues"
},
"homepage": "https://github.com/jlaustill/fm2#readme"
}