-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
61 lines (58 loc) · 1.62 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
{
"name": "fileup-js",
"version": "1.0.3",
"description": "Fileup - file upload lib",
"scripts": {
"build_all": "gulp build_tpl && gulp build_js_min && gulp build_js && gulp build_css_min && gulp build_css && npm run test_js",
"build_tpl": "gulp build_tpl",
"build_js": "gulp build_tpl && gulp build_js",
"build_js_min": "gulp build_tpl && gulp build_js_min",
"build_css": "gulp build_css",
"build_css_min": "gulp build_css_min",
"build_watch": "gulp build_watch",
"build_bootstrap": "gulp build_bootstrap",
"test_js": "eslint -c .eslintrc.json --max-warnings 100 --ext .js ./dist"
},
"devDependencies": {
"gulp": "5.0.0",
"gulp-concat": "2.6.1",
"gulp-sourcemaps": "3.0.0",
"gulp-sass": "5.1.0",
"gulp-uglify": "3.0.2",
"gulp-wrap-file": "0.1.2",
"gulp-html-to-js": "0.0.7",
"@rollup/stream": "3.0.1",
"rollup-plugin-sourcemaps": "0.6.3",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-node-resolve": "15.2.3",
"vinyl-source-stream": "2.0.0",
"vinyl-buffer": "1.0.1",
"sass": "1.76.0",
"eslint": "8.57.0",
"@babel/plugin-transform-template-literals": "7.24.1",
"@babel/preset-env": "7.24.5",
"bootstrap": "5.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/n2ref/fileup.git"
},
"keywords": [
"fileup",
"js",
"javascript",
"frontend",
"libriary",
"lib",
"form",
"file",
"upload",
"bootstrap"
],
"author": "n2ref",
"license": "ISC",
"bugs": {
"url": "https://github.com/n2ref/fileup/issues"
},
"homepage": "https://github.com/n2ref/fileup"
}