-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 922 Bytes
/
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
{
"name": "js-file-manager",
"version": "1.0.9",
"description": "A helper utility for working with files in the browser.",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"prepublish": "npm run build"
},
"keywords": [
"browser",
"files",
"file",
"manager",
"blob",
"read",
"write",
"save",
"open",
"picker"
],
"author": "jjv360",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/jjv360/js-file-manager.git"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"babel-loader": "^8.2.3",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"axios": "^0.24.0",
"base64-arraybuffer": "^0.1.5",
"bytes": "^2.5.0",
"file-saver": "^1.3.3",
"utf-8": "^1.0.0"
}
}