forked from JobLeonard/lz-string
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 907 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
{
"name": "lz-string-unsafe",
"version": "1.4.4-fork-1",
"license": "WTFPL",
"filename": "lz-string-unsafe.js",
"description": "LZ-based (unsafe) compression algorithm",
"homepage": "http://pieroxy.net/blog/pages/lz-string/index.html",
"keywords": [
"lz",
"compression",
"string"
],
"main": "lz-string-unsafe.js",
"typings": "typings/lz-string.d.ts",
"bin": {
"lz-string-unsafe": "bin/bin.js"
},
"scripts": {
"minify": "uglifyjs --compress --mangle -o lz-string-unsafe.min.js -- lz-string-unsafe.js"
},
"dependencies": {},
"devDependencies": {
"uglify-es": "^3.3.9"
},
"repository": {
"type": "git",
"url": "https://github.com/openstyles/lz-string-unsafe.git"
},
"bugs": {
"url": "https://github.com/openstyles/lz-string-unsafe/issues"
},
"directories": {
"test": "tests"
},
"author": "pieroxy <pieroxy@pieroxy.net>"
}