⌈⌋ ⎇ branch:  Bitrhythm


Artifact Content

Artifact 6abb911de8e960961465d9c330f4f2b841a242a256b18eb898d826efce56e7e6:


{
	"name": "json-url",
	"version": "3.0.0",
	"description": "Compress JSON into compact base64 URI-friendly notation",
	"main": "dist/node/index.js",
	"browser": "dist/browser/json-url-single.js",
	"scripts": {
		"lint": "eslint src/*",
		"compile": "rm -rf dist/; mkdir dist & wait & npm run compile:node & npm run compile:webpack & npm run compile:webpack:single",
		"compile:node": "babel --plugins @babel/plugin-transform-runtime,add-module-exports -d dist/node src src/main",
		"compile:webpack": "webpack",
		"compile:webpack:single": "webpack --config webpack.config.single.js",
		"prepublish": "npm test && npm run compile",
		"test": "npm run lint && npm run test:node && npm run test:karma",
		"test:node": "BABEL_ENV=test nyc mocha test/index.js --timeout 120000",
		"test:karma": "karma start --single-run",
		"perf": "babel-node test/perf.js",
		"coverage": "nyc report --reporter=text-lcov | coveralls",
		"example": "open http://localhost:8000/examples/browser/test.html & static-server --port 8000"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/masotime/json-url"
	},
	"author": "Benjamin Goh <masotime@gmail.com>",
	"license": "ISC",
	"dependencies": {
		"@babel/runtime-corejs2": "^7.0.0",
		"bluebird": "^3.0.6",
		"lz-string": "^1.4.4",
		"lzma": "^2.3.2",
		"msgpack5": "^4.2.1",
		"node-lzw": "^0.3.1",
		"urlsafe-base64": "^1.0.0"
	},
	"devDependencies": {
		"@babel/cli": "^7.0.0",
		"@babel/core": "^7.0.0",
		"@babel/node": "^7.0.0",
		"@babel/plugin-proposal-class-properties": "^7.0.0",
		"@babel/plugin-proposal-decorators": "^7.0.0",
		"@babel/plugin-proposal-do-expressions": "^7.0.0",
		"@babel/plugin-proposal-export-default-from": "^7.0.0",
		"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
		"@babel/plugin-proposal-function-bind": "^7.0.0",
		"@babel/plugin-proposal-function-sent": "^7.0.0",
		"@babel/plugin-proposal-json-strings": "^7.0.0",
		"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
		"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
		"@babel/plugin-proposal-numeric-separator": "^7.0.0",
		"@babel/plugin-proposal-optional-chaining": "^7.0.0",
		"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
		"@babel/plugin-proposal-throw-expressions": "^7.0.0",
		"@babel/plugin-syntax-dynamic-import": "^7.0.0",
		"@babel/plugin-syntax-import-meta": "^7.0.0",
		"@babel/plugin-transform-runtime": "^7.0.0",
		"@babel/polyfill": "^7.0.0",
		"@babel/preset-env": "^7.0.0",
		"@babel/register": "^7.6.2",
		"@babel/runtime": "^7.6.3",
		"babel-eslint": "^9.0.0",
		"babel-loader": "^8.0.0",
		"babel-plugin-add-module-exports": "^0",
		"babel-plugin-dynamic-import-node": "^1.1.0",
		"babel-plugin-istanbul": "^5.2.0",
		"babel-plugin-module-resolver": "^3.2.0",
		"coveralls": "^3.0.2",
		"eslint": "^6.6.0",
		"eslint-import-resolver-babel-module": "^5.1.0",
		"eslint-plugin-import": "^2.18.2",
		"karma": "^6.3.2",
		"karma-chrome-launcher": "^2.2.0",
		"karma-mocha": "^2.0.0",
		"karma-webpack": "^3.0.5",
		"mocha": "^8.3.2",
		"nyc": "^14.1.1",
		"static-server": "^2.0.5",
		"uglifyjs-webpack-plugin": "^0.4.6",
		"webpack": "^4.42.1",
		"webpack-cli": "^3.3.11"
	}
}