-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 981 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
38
39
40
41
42
43
44
45
{
"name": "@glitchybyte/zappy",
"version": "1.2.1",
"author": "GlitchyByte",
"license": "Apache-2.0",
"description": "Lightweight library for compressing and encoding web-related text (json, URLs, UUIDs, etc.) into a URL-safe format for efficient transport.",
"keywords": [
"text",
"json",
"compression",
"url-safe",
"base64"
],
"repository": {
"type": "git",
"url": "https://github.com/GlitchyByte/zappy"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"build": "tsc",
"test": "jest --coverage"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/src/test/**/*.test.ts"
],
"collectCoverage": true,
"coverageReporters": [
"lcov",
"text"
]
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"typescript": "^5.5.3"
}
}