-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.64 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
64
65
66
67
68
69
70
71
72
{
"name": "@zalari/string-compression-utils",
"version": "0.1.1",
"description": "Compress or decompress a string with native browser APIs.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"keywords": [
"utils",
"compression",
"decompression",
"browser",
"browser",
"string",
"btoa",
"atob",
"base64",
"inflate",
"gzip",
"deflate",
"deflate-raw"
],
"author": {
"name": "Zalari GmbH",
"email": "[email protected]",
"url": "https://www.zalari.de"
},
"contributors": [
{
"name": "Tom Kopp",
"email": "[email protected]"
},
{
"name": "David Enke",
"email": "[email protected]"
}
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zalari/string-compression-utils.git"
},
"bugs": {
"url": "https://github.com/zalari/string-compression-utils/issues"
},
"homepage": "https://github.com/zalari/string-compression-utils#readme",
"scripts": {
"lint": "eslint --ext .ts src",
"test": "wtr",
"test:watch": "npm run test -- --watch",
"build": "tsc"
},
"engines": {
"node": "^18"
},
"devDependencies": {
"@esm-bundle/chai": "4.3.4-fix.0",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"@web/dev-server-esbuild": "0.4.1",
"@web/test-runner": "0.16.1",
"@web/test-runner-puppeteer": "0.13.1",
"eslint": "8.44.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-tsdoc": "0.2.17",
"ts-node": "10.9.1",
"typescript": "5.1.6"
}
}