-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
47 lines (47 loc) · 1.43 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
{
"name": "downzip",
"version": "2.0.1",
"description": "Library to enable client-side code to stream potentially large files into a zipped download",
"main": "./dist/main.js",
"scripts": {
"setup_nyc_folder": "mkdir -p .nyc_output && chmod -R u+x .",
"test": "mocha --require @babel/register --require @babel/polyfill --require mocha-steps --text",
"test:coverage": "NODE_ENV=nyc npx babel src --out-dir instrumented-src && nyc --reporter=lcov --reporter=text --all --include=src/* npm run test",
"build": "npx webpack --mode=production",
"build_dev": "npx webpack --mode=development"
},
"repository": {
"type": "git",
"url": "https://github.com/robbederks/downzip"
},
"homepage": "https://github.com/robbederks/downzip",
"keywords": [
"zip",
"download",
"stream",
"zip64",
"client"
],
"author": "Robbe Derks",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"babel-loader": "^8.2.2",
"babel-plugin-istanbul": "^6.0.0",
"mocha": "^6.2.3",
"mocha-steps": "^1.3.0",
"node": "^13.14.0",
"nyc": "^15.1.0",
"service-worker-loader": "^4.0.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"jszip": "^3.5.0"
}
}