-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 KB
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
{
"name": "fast-lzw",
"version": "1.0.0-beta.3",
"description": "Extremely fast LZW decoder for Javascript using WASM",
"main": "dist/index.js",
"scripts": {
"watch": "webpack --watch",
"build": "cd src; make; cd ..; webpack",
"clean": "cd src; make clean; cd ..; "
},
"repository": {
"type": "git",
"url": "git+https://github.com/ceresimaging/fast-lzw.git"
},
"keywords": [
"Javascript",
"Performance",
"LZW",
"Decompress",
"WASM"
],
"author": "Seth Nickell <seth@ceresimaging.net>",
"license": "LGPL-2.1-only",
"bugs": {
"url": "https://github.com/ceresimaging/fast-lzw/issues"
},
"homepage": "https://github.com/ceresimaging/fast-lzw#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"worker-loader": "^2.0.0"
},
"dependencies": {
"core-js": "^3.1.4",
"threads": "^1.0.0-beta.3"
},
"files": [
"dist/"
]
}