-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.49 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
{
"name": "gzon",
"version": "1.0.0",
"description": "A simple JavaScript lib to compress, decompress and optimize json data exchange with GZIP and Base64. Inspired by https://github.com/tcorral/JSONC",
"repository": {
"type": "git",
"url": "https://github.com/JimZeeKing/GZON.git"
},
"main": "gzon",
"scripts": {
"b": "browserify ./src/main.js -o ./dist/gzon.js -t [ babelify --presets [ @babel/preset-env] ]",
"bm": "browserify -g [ uglifyify ] ./src/main.js -o ./dist/gzon.min.js -t [ babelify --presets [ @babel/preset-env] ]",
"bs": "browserify ./src/main.js -o ./dist/gzon.standalone.js -t [ babelify --presets [ @babel/preset-env] ]",
"bms": "browserify -g [ uglifyify ] ./src/main.js -o ./dist/gzon.standalone.min.js -t [ babelify --presets [ @babel/preset-env] ]",
"bst": "npm run bs && karma start test/karma.conf.js",
"bmst": "npm run bms && karma start test/karma.conf.js",
"deploy": "npm run b && npm run bm && npm run doc",
"doc": "node_modules/.bin/jsdoc -c jsdoc.json",
"test": "karma start test/karma.conf.js"
},
"author": "JimZeeKing",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"karma": "^3.1.4",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"karma-read-json": "^1.1.0",
"pako": "^1.0.7",
"uglifyify": "^5.0.1"
},
"dependencies": {
"docdash": "^1.0.2",
"jsdoc": "^3.5.5"
}
}