-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "async-lz-string",
"version": "1.1.0",
"license": "MIT",
"author": "Jack Bister",
"filename": "async-lz-string.js",
"description": "LZ-based compression algorithm",
"homepage": "https://github.com/jackbister/async-lz-string/",
"keywords": [
"async",
"lz",
"compression",
"string"
],
"scripts": {
"build": "webpack --mode production",
"dev": "webpack",
"check-runs-on-node": "npm run build && node ./test/node-test.js",
"start-test": "karma start",
"test": "karma start --single-run",
"watch": "webpack --watch"
},
"main": "libs/async-lz-string.js",
"typings": "typings/async-lz-string.d.ts",
"dependencies": {},
"devDependencies": {
"@types/jasmine": "4.3.1",
"jasmine": "4.6.0",
"karma": "6.4.2",
"karma-chrome-launcher": "3.2.0",
"karma-cli": "2.0.0",
"karma-jasmine": "5.1.0",
"karma-typescript": "5.5.3",
"karma-typescript-es6-transform": "5.5.3",
"lz-string": "1.5.0",
"ts-loader": "9.4.2",
"typescript": "4.9.5",
"webpack": "5.81.0",
"webpack-cli": "5.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/jackbister/async-lz-string.git"
},
"bugs": {
"url": "https://github.com/jackbister/async-lz-string/issues"
},
"directories": {
"test": "test"
}
}