-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
56 lines (56 loc) · 1.28 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
{
"name": "lzutf8",
"version": "0.6.3",
"description": "A high-performance string compression library",
"keywords": [
"compression",
"string compression",
"text compression",
"lz77",
"utf8",
"utf-8"
],
"author": "Rotem Dan <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/rotemdan/lzutf8.js",
"repository": {
"type": "git",
"url": "https://github.com/rotemdan/lzutf8.js.git"
},
"bugs": {
"url": "https://github.com/rotemdan/lzutf8.js/issues"
},
"main": "build/production/lzutf8.js",
"files": [
"build/production/lzutf8.js",
"build/production/lzutf8.min.js",
"build/production/lzutf8.d.ts",
"README.md",
"LICENSE"
],
"types": "build/production/lzutf8.d.ts",
"devDependencies": {
"expectations": "1.0.0",
"grunt": "1.5.3",
"grunt-contrib-clean": "2.0.1",
"grunt-contrib-concat": "2.1.0",
"grunt-contrib-connect": "3.0.0",
"grunt-contrib-uglify": "5.2.2",
"grunt-env": "1.0.1",
"grunt-istanbul": "0.8.0",
"grunt-mocha-phantomjs": "4.0.0",
"grunt-mocha-test": "0.13.3",
"grunt-shell": "4.0.0",
"load-grunt-tasks": "5.1.0",
"mocha": "10.0.0",
"typescript": "4.7.4"
},
"scripts": {
"test": "grunt test",
"build": "grunt",
"prepare": "npm run build"
},
"dependencies": {
"readable-stream": "^4.0.0"
}
}