-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.79 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.79 KB
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
64
65
{
"name": "gzip-utils",
"repository": {
"type": "git",
"url": "https://github.com/zoran-php/gzip-utils"
},
"homepage": "https://github.com/zoran-php/gzip-utils#readme",
"version": "1.0.0",
"description": "Gzip and Gunzip text, File, Blob, Uint8Array or stream using native Javascript Compression API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "npx tsc",
"test": "jest",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint -c .eslintrc.json"
},
"keywords": [
"gzip",
"compression",
"compress",
"compressor",
"compressing",
"decompress",
"decompressor",
"decompressing",
"decompression",
"web",
"typescript"
],
"author": "Zoran Davidovic",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@inrupt/jest-jsdom-polyfills": "^3.0.2",
"@jest/globals": "^29.7.0",
"@testing-library/jest-dom": "^6.1.5",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"babel-jest": "^29.7.0",
"blob-polyfill": "^7.0.20220408",
"compression-streams-polyfill": "^0.1.6",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.5.0",
"eslint-plugin-prettier": "^5.1.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"web-streams-polyfill": "^3.2.1"
}
}