-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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": "json-pack-gzip",
"version": "0.0.0-development",
"description": "A module for compressing and decompressing JSON data using Gzip compression algorithm and HPack compression algorithm.",
"main": "index.js",
"scripts": {
"test": "jest",
"eslint": "./node_modules/eslint/bin/eslint.js --max-warnings 0 --ext .js .",
"eslint:fix": "./node_modules/eslint/bin/eslint.js --max-warnings 0 --ext .js --fix .",
"semantic-release": "semantic-release"
},
"keywords": [
"JSON",
"HPack",
"Gzip"
],
"maintainers": [
{
"name": "Syibbran Mulaesyi",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/MkDierz/json-pack-gzip.git"
},
"readmeFilename": "README.md",
"author": "Syibbran Mulaesyi",
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.8",
"eslint": "^8.42.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"node-mocks-http": "^1.12.2",
"semantic-release": "^21.0.7"
},
"dependencies": {
"debug": "^4.3.4",
"dotenv": "^16.0.3"
},
"publishConfig": {
"@MkDierz:registry": "https://npm.pkg.github.com"
}
}