-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
71 lines (71 loc) · 2.14 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "lzbase62",
"version": "2.0.0",
"description": "Compress strings into base62 [0-9a-zA-Z] using an LZ-based algorithm for JavaScript",
"keywords": [
"compression",
"decompression",
"compress",
"decompress",
"encoding",
"decoding",
"lz",
"lz77",
"base64",
"base62",
"javascript",
"string"
],
"homepage": "https://github.com/polygonplanet/lzbase62",
"bugs": {
"url": "https://github.com/polygonplanet/lzbase62/issues"
},
"license": "MIT",
"author": "polygonplanet <[email protected]>",
"files": [
"dist/*",
"src/*"
],
"main": "src/index.js",
"repository": {
"type": "git",
"url": "[email protected]:polygonplanet/lzbase62.git"
},
"scripts": {
"build": "npm run compile && npm run minify",
"compile": "browserify src/index.js -o dist/lzbase62.js -s lzbase62 -p [ bannerify --file src/banner.js ] --no-bundle-external --bare",
"minify": "uglifyjs dist/lzbase62.js -o dist/lzbase62.min.js --comments -c -m -b ascii_only=true,beautify=false",
"test": "eslint src && npm run build && mocha test/**/*.spec.js --timeout 10000 && karma start karma.conf.js",
"ci": "npm run build && mocha test/**/*.spec.js --timeout 10000 && karma start karma.conf.js --single-run",
"watch": "watchify src/index.js -o dist/lzbase62.js -s lzbase62 -p [ bannerify --file src/banner.js ] --no-bundle-external --bare --poll=200 -v"
},
"devDependencies": {
"bannerify": "^1.0.1",
"browserify": "^17.0.0",
"es6-shim": "^0.35.8",
"eslint": "^9.0.0",
"karma": "^6.4.3",
"karma-browserify": "^8.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-detect-browsers": "^2.3.3",
"karma-es6-shim": "^1.0.0",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-safari-launcher": "^1.0.0",
"mocha": "^10.4.0",
"package-json-versionify": "^1.0.4",
"power-assert": "^1.6.1",
"uglify-js": "^3.17.4",
"uglifyify": "^5.0.2",
"watchify": "^4.0.0"
},
"engines": {
"node": ">=18.18.0"
},
"browserify": {
"transform": [
"package-json-versionify"
]
}
}