forked from nika-begiashvili/libarchivejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 851 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
{
"name": "libarchive.js",
"version": "1.3.0",
"description": "extract archive files in browser, libarchive port in wasm",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/nika-begiashvili/libarchivejs"
},
"scripts": {
"build": "rollup -c --environment BUILD:production",
"build-dev": "rollup -c --environment BUILD:development",
"test": "jest --runInBand"
},
"keywords": [
"archive",
"extract",
"zip",
"rar",
"gz",
"7z",
"javascript",
"js",
"browser"
],
"author": "Nika Begiashvili",
"license": "MIT",
"devDependencies": {
"eslint": "^6.8.0",
"jest": "^24.9.0",
"puppeteer": "^1.20.0",
"rollup": "^1.31.1",
"rollup-plugin-copy-assets": "^1.0.0",
"rollup-plugin-terser": "^4.0.4",
"static-server": "^2.2.1"
}
}