-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.81 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
{
"name": "7zip.html",
"private": true,
"version": "1.0.1",
"description": "A tool to browse 7zip archives online in the web-browsers.",
"scripts": {
"lint": "npm run lint:styles; npm run lint:scripts",
"lint:styles": "stylelint src",
"lint:scripts": "eslint src",
"build": "cross-env NODE_ENV=production webpack --config webpack/webpack.config.prod.js",
"start": "webpack serve --config webpack/webpack.config.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mpds-io/7zip.html"
},
"keywords": [
"7z",
"7zip",
"7z-archive",
"unzip"
],
"author": "Matvii Hodovaniuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/mpds-io/7zip.html/issues"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/eslint-parser": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.12.7",
"babel-loader": "^8.2.2",
"bufferutil": "^4.0.3",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^8.1.0",
"core-js": "^3.9.1",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"eslint": "^7.15.0",
"eslint-webpack-plugin": "^2.5.3",
"file-loader": "^6.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.3.2",
"postcss-loader": "^5.2.0",
"style-loader": "^2.0.0",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^21.0.0",
"stylelint-webpack-plugin": "^2.1.1",
"utf-8-validate": "^5.0.4",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^4.0.0-beta.1",
"webpack-merge": "^5.4.0"
},
"dependencies": {
"downloadjs": "^1.4.7",
"libarchive.js": "^1.3.0",
"uuid": "^8.3.2"
}
}