-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
45 lines (45 loc) · 1012 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": "lzjs",
"version": "1.3.1",
"description": "A JavaScript library for compressing and decompressing strings using an original algorithm based on the LZ algorithm",
"main": "lzjs.js",
"files": [
"lzjs.js",
"lzjs.min.js"
],
"directories": {
"test": "tests"
},
"devDependencies": {
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"uglify-js": "^3.17.4"
},
"scripts": {
"minify": "uglifyjs lzjs.js -o lzjs.min.js --comments -c -m -b ascii_only=true,beautify=false",
"test": "eslint . && mocha tests/test.js"
},
"engines": {
"node": ">=14.15.0"
},
"bin": {
"lzjs": "bin/lzjs"
},
"repository": {
"type": "git",
"url": "[email protected]:polygonplanet/lzjs.git"
},
"keywords": [
"compression",
"lz77",
"lzss",
"base64",
"string"
],
"author": "polygonplanet",
"license": "MIT",
"bugs": {
"url": "https://github.com/polygonplanet/lzjs/issues"
},
"homepage": "https://github.com/polygonplanet/lzjs"
}